You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The installation instructions don't specify how to install on python3, which is confusing. The instructions make it sound like if you have python3 installed then pip will automatically be linked to python3 and you can run "sudo pip install Theano". That is not really accurate.
"sudo apt-get install python-pip" will install a version of pip linked to python2 regardless of whether you have python3 installed. You need to run "sudo apt-get install python3-pip". You also need to explicitly run "pip3". pip will continue to be pip2, or at least it is on my machine.
To install Theano I had to get the right command from Pylearn2's travis installation script and then explicit invoke pip3:
sudo pip3 install -q --no-deps git+git://github.com/Theano/Theano.git
The text was updated successfully, but these errors were encountered:
The installation instructions don't specify how to install on python3, which is confusing. The instructions make it sound like if you have python3 installed then pip will automatically be linked to python3 and you can run "sudo pip install Theano". That is not really accurate.
"sudo apt-get install python-pip" will install a version of pip linked to python2 regardless of whether you have python3 installed. You need to run "sudo apt-get install python3-pip". You also need to explicitly run "pip3". pip will continue to be pip2, or at least it is on my machine.
To install Theano I had to get the right command from Pylearn2's travis installation script and then explicit invoke pip3:
sudo pip3 install -q --no-deps git+git://github.com/Theano/Theano.git
The text was updated successfully, but these errors were encountered: