“ImportError: No module named httplib2” even after installation

If there are multiple Python instances (2 & 3), try different pip, for example:

Python 2:

pip2 install httplib2 --upgrade

Python 3:

pip3 install httplib2 --upgrade

To check what’s installed and where, try:

pip list
pip2 list
pip3 list

Then make sure you’re using the right Python instance (as suggested in the other answer).

Leave a Comment