Git 无法在 Anaconda Prompt 上识别

Git not recognised on Anaconda Prompt

我已经在我的系统上安装了 Git,git 命令在命令提示符下运行良好。我还更新了路径变量以反映 git bin 和 cmd 的地址。现在,我想使用以下命令使用 Anaconda Prompt 安装 Theano 库 - pip install git+git://github.com/Theano/Theano.git

我得到的错误是 - 错误 [WinError 2] 系统在执行命令时找不到指定的文件 git clone -q git://github.com/fchollet/keras.git C :\Users\Kritika\AppData\Local\Temp\pip-vp5qj204-build 找不到命令 'git'

我用谷歌搜索并找到了很多东西,但似乎没有一个对我有用。有人可以帮我吗?

你或许应该试试

pip install git+https://github.com/Theano/Theano.git

首先运行命令

conda install -c anaconda git

然后 运行

git clone https://github.com/Theano/Theano.git