views:

283

answers:

4
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?

A: 

Download it?

Make sure it's on your PYTHONPATH

Mark Peters
+4  A: 

I suppose you could start by installing httplib2.

Jonathan Feinberg
A: 

You need to install the httplib2 package from your package manager.

On Ubuntu: sudo apt-get install python-httplib2

ccheneson
A: 

I thought it suppose to be installed with Python as it is standard library?

asdasdsad
`httplib` is in standard library, not `httplib2`
SilentGhost
This is not an answer. This is clarification to the question. Please REMOVE this and UPDATE the question.
S.Lott