从URL pip安装软件包

时间:2020-03-01 14:19:04

标签: keras pip

很抱歉,这是一个愚蠢的问题,但我是绝对的初学者。 我想安装它来消除错误:

pip3 install git+https://github.com/keras-team/keras.git -U

我不确定该怎么做。尝试在命令提示符下安装时出现此错误:

ERROR: Error [WinError 2] The system cannot find the file specified while executing command git clone -q https://github.com/keras-team/keras.git 'C:\Users\Danush\AppData\Local\Temp\pip-req-build-vjgdo2yi'
ERROR: Cannot find command 'git' - do you have 'git' installed and in your PATH?

感谢您的帮助。谢谢。

3 个答案:

答案 0 :(得分:1)

很明显,在您的输出中没有安装git或未设置ENVIRONMENT变量。

确保先安装Git(如果已安装), 确保设置了环境变量。

答案 1 :(得分:0)

使用您正在使用的命令来安装Keras。不用输入git link,只需输入pip install keras。 Keras随TensorFlow自动安装。 这是Keras的文档: https://pypi.org/project/Keras/

答案 2 :(得分:-3)

您不能在网址中使用pip命令,您需要在终端窗口中执行此操作,可以通过git clone进行多种最简单的操作

sudo git clone https://github.com/keras-team/keras.git

或者您可以使用

sudo wget https://github.com/keras-team/keras.git

甚至是卷曲的,为什么不去https://github.com/keras-team/keras.git并下载zip格式的github?