I have installed Git on my system and the git
command is working fine in the command prompt. I also updated my path varaibles to reflect the address of git bin and cmd. Now, I want to use the following command to install Theano library using Anaconda Prompt -
pip install git+git://github.com/Theano/Theano.git
The error I am getting is - Error [WinError 2] The system cannot find the file specified while executing command git clone -q git://github.com/fchollet/keras.git C:\Users\Kritika\AppData\Local\Temp\pip-vp5qj204-build Cannot find command 'git'
I googled and found a lot of things but nothing seems to work for me. Can anybody help me here?
You should probably try
pip install git+https://github.com/Theano/Theano.git