gpt4 book ai didi

python - 如何在requirements.txt中指定特定的github repo版本?

转载 作者:行者123 更新时间:2023-12-01 06:40:47 28 4
gpt4 key购买 nike

我希望能够安装特定版本的 github 存储库。我按照 here 给出的说明进行操作我的文件 requirements.txt 如下所示:

git://github.com/twoolie/NBT@f9e892e

我还尝试了以下版本:

git+git://github.com/twoolie/NBT@f9e892e
git+git://github.com/twoolie/NBT.git@f9e892e
git://github.com/twoolie/NBT.git@f9e892e

但在每种情况下,当我尝试安装实际的包(需要来自提交哈希 f9e892e 的存储库 NBT)时,我都会收到错误消息

error in PyBlock setup command: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers; Invalid requirement, parse error at "'://githu'"

那么如何正确地做到这一点呢?

最佳答案

我通过向 `setup.py' 中的 setup 方法添加以下参数解决了该问题:

install_requires=['NBT@git+git://github.com/twoolie/NBT@f9e892'],

并使用空的requirements.txt 文件。通过这些设置,特定版本的软件包的安装终于成功了。

关于python - 如何在requirements.txt中指定特定的github repo版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59467291/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com