Python中出现request模块导入错误
python项目中 from urllib.request import urlopen ,导入request出问题,而进行完 pip install request 安装后,仍会出现该错误。
错误提示:
ImportError: No module named request
问题分析:
python 3.x版本与2.x版本不兼容的问题,在python 2.x中 urlopen 模块在urllib2中。
解决方法:
改为from urllib2 import urlopen。
版本区别具体可参考:https://blog.csdn.net/weixin_42078760/article/details/81537077
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。