Pip 安装 python 软件包:找不到 requirements.txt。

问题描述 投票:0回答:1

我正在尝试安装gamry-parser包(https:/pypi.orgprojectgamry-parser).

但是,命令窗口无法在它所寻找的位置找到requirements.txt。我试着在我的计算机中搜索它所搜索的路径,但它似乎并不存在(c:users/name/appdata/local/temp/pip-install-rfy1sh/gamry-parser/setup.py。). 此外,requirements.txt确实存在,但不在这个不存在的路径中。我得到以下错误。

IOError: [Errno 2] No such file or directory: 'requirements.txt'
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

谢谢,我正试图安装gamry.txt包。

python path pip command requirements
1个回答
1
投票

gamry-parser 0.4.1 提供了 一个Python 3的轮子和一个将用于Python 2.7的源代码。我测试了它们 - 轮子安装在 Python 3.7 上,没有问题。

问题是Python 2.7和源码发行版--sdist缺少了 requirements.txt. 为了修复它,他们需要添加文件 MANIFEST.in:

echo include requirements.txt > MANIFEST.in
git add MANIFEST.in
git commit -m "Add MANIFEST.in for sdist"

请你 报告问题 或发送一个拉动请求。

© www.soinside.com 2019 - 2024. All rights reserved.