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.
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.
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.
Why not just install httplib2. Here are the steps:
cd into the directory when you unpacked httplib2Alternately, you can run:
~$ python /path/to/httplib2/setup.py install
from anywhere.