本文介绍了Python:找不到Httplib2模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试导入模块,但是出现以下错误:-

I tried to import the module but i am getting the error shown below:-

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

如何解决此错误?

推荐答案

httplib2不属于Python标准库.这是一个外部软件包,您必须自己安装.

httplib2 is not part of the Python standard library. It's an external package you must install yourself.

使用 pip :

pip install httplib2

这篇关于Python:找不到Httplib2模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-02 20:51