sh-3.2# python -V
Python 2.6.4
sh-3.2# python -c "import httplib2"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named httplib2
errr.. how to fix this?
sh-3.2# python -V
Python 2.6.4
sh-3.2# python -c "import httplib2"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named httplib2
errr.. how to fix this?
You need to install the httplib2 package from your package manager.
On Ubuntu:
sudo apt-get install python-httplib2
I thought it suppose to be installed with Python as it is standard library?