从GitHub下载requirements.txt

2024-09-30 06:26:42 发布

您现在位置:Python中文网/ 问答频道 /正文

我正试图从我在GitHub的回购中下载requirements.txt

我使用pip install -e git+https://github.com/GabrielCoutz/Problema-Chiado#egg=requirements.txt,这将返回:

ERROR: File "setup.py" not found for legacy project requirements.txt from git+https://github.com/GabrielCoutz/Problema-Chiado#egg=requirements.txt.

如何创建setup.py以及我必须输入什么


Tags: pippyhttpsgitgithubtxtcomegg
1条回答
网友
1楼 · 发布于 2024-09-30 06:26:42
pip install -r https://raw.githubusercontent.com/GabrielCoutz/Problema-Chiado/main/requirements.txt

-例如,e表示用于开发的本地安装。选中此项: What is the use case for `pip install -e`?

相关问题 更多 >

    热门问题