I'm trying to intstall TensorFlow using pip:
$ pip install tensorflow --user
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
What am I doing wrong? So far I've used Python and pip with no issues.
Unfortunately my reputation is to low to command underneath @Sujoy answer.
In their docs they claim to support python 3.6. The link provided by @mayur shows that their is indeed only a python3.5 wheel package. This is my try to install tensorflow:
while python 3.5 seems to install successfully. I would love to see a python3.6 version since they claim it should also work on python3.6.
Quoted :
"TensorFlow supports Python 3.5.x and 3.6.x on Windows. Note that Python 3 comes with the pip3 package manager, which is the program you'll use to install TensorFlow."
Source : https://www.tensorflow.org/install/install_windows
Python3.5 install :
I hope i am terrible wrong here but if not ring a alarm bell
If you're trying to install tensorflow in anaconda and it isn't working, then you may need to downgrade python version because only
3.6.x
is currently supported while anaconda has the latest version.check python version:
python --version
if version >
3.6.x
then follow step 3, otherwise stop, the problem may be somewhere elseconda search python
conda install python=3.6.6
Check version again:
python --version
If version is correct, install tensorflow (step 7)
pip install tensorflow
python -m pip install --upgrade pip
pip install tensorflow
I had the same problem. After uninstalling the 32-bit version of python and reinstalling the 64-bit version I tried reinstalling TensorFlow and it worked.
Link to TensorFlow guide: https://www.tensorflow.org/install/install_windows
After searching the internet for about 3 hours, I found this to finally work.
Edit 1: Tested on windows(8,8.1,10) and Mac. Change
python3
topython
according to your configuration. Changepy3
topy2
in the url if you are using Python2.xEdit 2: A list of different versions if someone needs: https://storage.googleapis.com/tensorflow
I figured out that TensorFlow1.0 only works with Python version 3.5.2. I had Python 3.6 but that didn't work. So, I had to downgrade Python and then I could install TensorFlow.