Installing tensorflow on CPU - python

After following all the recommended tensorflow install guides, by the time I tried "pip install --upgrade tensorflow" it kept saying "No matching distribution found" and "Could not find a version that satisfies the requirement tensorflow (from versions:none)", why does this happen?? Also I'm using Python 3.7!!

It has been reported some issues with Python 3.7 and TensorFlow. Maybe installing a specific version could work for you. For example:
pip install tensorflow==1.15.0

Related

Cannot install Tensorflow on PyCharm: "Could not find a version that satisfies the requirement tensorflow (from versions: none)"

I'm trying to install Keras and TensorFlow but I got this error. How can I solve this problem?
I'm using MacOS.
Try installing other versions of Python, like python 3.8. And then install Tensorflow. Right now tensorflow does not have a build for python3.9 The latest one is for python3.8
You can check the TensorFlow builds here
https://pypi.org/project/tensorflow/#files

Can't Install Tensorflow 1.14.0 using pip (ERROR: No matching distribution found for tensorflow==1.14.0)

I'm trying to install tensorflow 1.14.0
I already updated pip with prompt.
there are some that say that tensorflow does not work with python 3.7
I have already checked that I'm using python 64-bit
I'm using VScode.
this is what I type:
pip install tensorflow==1.14.0
this is what shows:
ERROR: Could not find a version that satisfies the requirement tensorflow==1.14.0 (from versions: none)
ERROR: No matching distribution found for tensorflow==1.14.0
thank you.
I could not find the answer to this but it seems that VScode that is installed in that computer (computer 1) is unstable.
Now I transferred all my TensorFlow projects to my main computer that runs stable codes.
If I find a definitive answer then I will update this message.
right now the answer is to run in another environment, it worked for me.

Why is pip not updating tensorflow correctly, and, if it is, why is the 'attrib error' still thrown?

I've installed tensorflow over pip3 and python3, and am working on it. While using the colum function, the commonly experienced error AttributeError: module 'tensorflow' has no attribute 'feature_column'.
It might look like a duplicate question, but I've looked at the other occurrences of the same question, but, after updating the file (pip3 install --upgrade tensorflow), I checked the version. The version 0.12.0 is shown. So why does pip still show its completely new. Is 0.12.0 the newest version?
When I attempted to uninstall tensorflow and re-install it, it refuses to re-install. I'm using python3 -m pip install tensorflow. The error thrown here is Could not find a version that satisfies the requirement tensorflow (from versions: ) No matching distribution found for tensorflow
Thanks in advance for your help
As mentioned in the comments, the most probable solution to the attribute error is the update problem. However, if you're encountering the Could not find a version that satisfies the requirement tensorflow (from versions: ) No matching distribution found for tensorflow, the easiest solution is to use following code.
pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.1.0-py2-none-any.whl (for python 2)
or
pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.1.0-py3-none-any.whl (for python 3)

python(x86_64) tensorflow install error (Could not find a version...)

Summary
Setup python3.7(64bit) and pip install tensorflow then, I've got the message, you may hate.
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
As many person have been see.
as many person have been seen. what's wrong? :(
Success: old command
I found while searching... and this command was worked.
python -m pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.12.0-py3-none-any.whl
very old version though...
Tries: Install path
First, Python installed c:\program file\Python37 And after meet the message, re-install to %USERPROFILE%\Appdata\Local\Program\Python37 yeah, nothing changed.

Pip3 installing of Tensorflow issue

I'm trying to install python and tensorflow to learn as part of a class I am taking, and am having some issues installing tensorflow. I keep getting the same set of errors:
C:\Users\X\AppData\Local\Programs\Python\Python36-32\python.exe: can't find '__main__' module in 'C:\\'
or
Could not find a version that satisfies the requirement tensorflow (from versions: ) No matching distribution found for tensorflow
I've tried uninstalling and reinstalling python while adding it to my path, and that solved me not being stuck with syntax errors (most of the time), but I haven't been able to make any progress. Any advice on moving forward would be appreciated.
To be clear, I am typing the following command into my command prompt:
pip3 install --upgrade tensorflow
As per the instructions on the TensorFlow website - I've been finding the "C:\>" raises a syntax error however.
your pip3 is broken, because I can clearly see tensorflow distribution on PyPi for python 3.6 https://pypi.python.org/pypi/tensorflow/1.5.0. Also, I just created a new virtual env for python 3.6 and I am able to pip install it.
Also you can download manually the "tensorflow-1.5.0-cp36-cp36m-win_amd64.whl",assuming you have windows, and pip install tensorflow-1.5.0-cp36-cp36m-win_amd64.whl

Categories

Resources