为什么当我尝试在Google Collab中克隆github存储库时,我会收到"ERROR: Command errored out with exit status 1"?



我尝试过:pip install git+https://github.com/adityatb/noise-reduction-using-rnn.git但我得到了错误:

Collecting git+https://github.com/adityatb/noise-reduction-using-rnn.git
Cloning https://github.com/adityatb/noise-reduction-using-rnn.git to /tmp/pip-req-build-ka8brgnj
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

我尝试升级我的pipsetuptools,得到了相应的控制台输出:

Requirement already satisfied: pip in /usr/local/lib/python3.6/dist-packages (19.3.1)
Requirement already up-to-date: setuptools in /usr/local/lib/python3.6/dist-packages (50.3.0)

但这个错误并没有消失。我的命令或这个回购有什么问题?

原因很简单:存储库没有setup.py,所以pip无法安装此存储库。我需要在我的文件夹中复制存储库文件。

相关内容

最新更新