0

After running into this one - previous post which recommended updating httplib i want to upgrade my httplib module.

I have no idea how. I'm using easy_install, but when trying to call easy_install httplib it didn't find matches.

Please help.

Community
  • 1
  • 1
omer bach
  • 2,345
  • 5
  • 30
  • 46

2 Answers2

0

httplib comes with python package. So, if you want to updade httplib, you can only upgrade python.

Have you tried to update python-requests? Maybe your problem here.

dt0xff
  • 1,553
  • 1
  • 10
  • 18
0

Why not just install httplib2. Here are the steps:

  1. Download httplib2 onto your computer
  2. cd into the directory when you unpacked httplib2
  3. Run the command there

Alternately, you can run:

~$ python /path/to/httplib2/setup.py install

from anywhere.

user2567857
  • 483
  • 7
  • 25