没有名为urllib.parse的模块(我应该如何安装?)
我试图在CentOS 7上运行REST API,我读到urllib.parse在Python 3中,但是我在使用Python 2.7.5,所以我不知道如何安装该模块。
我安装了所有要求,但仍然无法运行该项目。
当我寻找一个URL时,我得到了这个(我正在使用可浏览的界面):
输出:
ImportError at /stamp/No module named urllib.parse
回答:
如果你需要编写与Python2和Python3兼容的代码,则可以使用以下导入
try: from urllib.parse import urlparse
except ImportError:
from urlparse import urlparse
以上是 没有名为urllib.parse的模块(我应该如何安装?) 的全部内容, 来源链接: utcz.com/qa/433238.html