no module named req
程序员文章站
2022-07-12 09:56:31
...
错误:
Traceback (most recent call last):
File "dingdang.py", line 11, in <module>
from client import tts
File "/home/youzinan/zhou/robot/dingdang-robot-master/client/tts.py", line 32, in <module>
from . import diagnose
File "/home/youzinan/zhou/robot/dingdang-robot-master/client/diagnose.py", line 10, in <module>
import pip.req
ImportError: No module named req
解决方案:
方案1
直接升级pip无效
方案2
直接在原函数中把import改为直接添加代码函数
def parse_requirements(filename):
""" load requirements from a pip requirements file """
lineiter = (line.strip() for line in open(filename))
return [line for line in lineiter if line and not line.startswith("#")]
下一篇: 堆排序的应用
推荐阅读
-
nginx中的limit_req限速设置配置示例
-
Android studio 如何删除项目 module
-
Python 常用的几种安装Module方式
-
Node.js 中exports 和 module.exports 的区别
-
Python安装Imaging报错:The _imaging C module is not installed问题解决方法
-
python提示No module named images的解决方法
-
Caused by SSLError("Can’t connect to HTTPS URL because the SSL module is not available)
-
在windows下使用淘宝的nginx插件 nginx_concat_module (附下载地址)
-
js module大战
-
解决Python源码编译时提示:ModuleNotFoundError: No module named ‘distutils.command‘