2017-11-25 5 views
0

anacondaを再インストールした後、このコマンドラインでこれを取得します。何故ですか?anacondaの再インストール後にtheanoをインストールできない

pip install --upgrade --no-deps git+git://github.com/Theano/Theano.git 

(C:\Users\AM\Anaconda3) C:\Users\AM\Documents>pip install --upgrade --no- 
deps git+git://github.com/Theano/Theano.git 
Collecting git+git://github.com/Theano/Theano.git 
    Cloning git://github.com/Theano/Theano.git to c:\users\am\appdata\local\temp\p 
ip-273x97zk-build 
    Error [WinError 2] The system cannot find the file specified while 
executing command git clone -q git://github.com/Theano/Theano.git C:\Users\AM\AppData\Local 
\Temp\pip-273x97zk-build 
Cannot find command 'git' 

また、私は、使用するかを知っているので、混乱はありません

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

&

pip install --upgrade --no-deps git+git://github.com/Theano/Theano.git 

の違いは何ですか。

私はPython 3.6を実行していますが、3.5にダウングレードする必要はありますか?

ありがとうございました。

答えて

0

出力に誤差がある:

Cannot find command 'git' 

は(私はWindows用のgit PowerShellがあると思う)のgitをインストールし、それが動作

+0

後にコマンドを実行してみてください。ありがとう!ところでこのgitのことは何ですか?私はそれを前にインストールしたとは思わないが、何とか働いた。とても奇妙... – yomoko

関連する問題