简体   繁体   中英

Including httplib2

So I was having the usual problem with importing httplib2, I came across this and similar answers. But now I must be bold, and ask a dumb question, how do I include/link the modual into my project?

As the link you posted to states httplib2 is not a standard library that comes with Python you have to install it first.

To install httplib2 in Python 3 you can use (Ubuntu):

sudo apt-get install python3-httplib2

or pip

pip install httplib2

Other instructions for direct download here: http://code.google.com/p/httplib2/wiki/Install

Then make sure it's on your PYTHONPATH.

Then just include it:

import httplib
$ sudo pip3 install httplib2

import httplib2

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM