我正在尝试使用 pip install 安装 behave-parallel。我以前使用 pip 安装过程序,所以我知道我的 Python/脚本路径在我的环境变量中是正确的。但是我看到以下错误
FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Users\\.....Temp\\pip-install-rjiorrn7\\behave-parallel\\setup.py'
我该如何解决这个问题
C:\Users\.....>pip install behave-parallel
Collecting behave-parallel
Using cached https://files.pythonhosted.org/packages/05/9d/22f74dd77bc4fa85d391564a232c49b4e99cfdeac7bfdee8151ea4606632/behave-parallel-1.2.4a1.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "c:\.........\python\lib\tokenize.py", line 447, in open
buffer = _builtin_open(filename, 'rb')
FileNotFoundError: [Errno 2] No such file or directory: 'C:\\.........\\AppData\\Local\\Temp\\pip-install-7vgf8_mu\\behave-parallel\\setup.py'
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\.........\AppData\Local\Temp\pip-install-7vgf8_mu\behave-parallel\
原文由 Richard C 发布,翻译遵循 CC BY-SA 4.0 许可协议
该包已损坏,因为它缺少
setup.py
文件。您可以从 Github 或任何地方下载源代码并自己打包 (
python setup.py bdist_wheel
),然后安装那个轮子 (pip install ../../dist/behave-parallel...whl
)。