I intend to install tensorflow using pip in command prompt. This is what I have written:
pip install tensorflow
and
py -m pip install tensorflow
However, this is the error that appears:
ERROR: Could not find a version that satisfies the requirement tensorflow
ERROR: No matching distribution found for tensorflow
The version of my Python is 3.7 and it is 64 bit. I can't download it either through the settings.
Related
I am trying to install tensorflow in cygwin on my Windows 7 machine using pip install tensorflow==2.9.0 command but it says
ERROR: Could not find a version that satisfies the requirement tensorflow==2.9.0 (from versions: none)
ERROR: No matching distribution found for tensorflow==2.9.0
I tried using pip install tensorflow but it gives me a similar error.
The python version that I have is 3.8.12 and the python is 64 bits.
Please help me to install it.
I have installed Python 3.9.2. And mt pip version is 21.0.1.
While installing tensorflow I am getting below error
ERROR: Could not find a version that satisfies the requirement tensorflow
ERROR: No matching distribution found for tensorflow
Currently there is no version of Tensorflow that would work with python 3.9.
I'm currently trying to pip install tensorflow. But I get the following error:
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow
What should I do?
Oh and by the way i tried installing it with the following command:
python -m pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.12.0-py3-none-any.whl
But i think i just made it even worse.
Currently on Windows 10
Thanks!
You are trying to install a TensorFlow package for Mac OS. Try with a suitable package for Windows 10. For example if you have Python 3.6 and want the CPU-only version you could try the following:
python -m pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.14.0-cp36-cp36m-win_amd64.whl
But it is recommended to install TensorFlow using a virtualenv as shown on the official documentation.
I am attempting to install TensorFlow on my Macintosh computer. I was following the instructions as provided on their website when I reached a problem. I had established a virtual environment in the MacOS terminal and attempted to use pip to install TensorFlow with the command
pip install tensorflow
when I received the following message:
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow
How can I resolve this? Thank you for any assistance you can provide.
Sincerely,
Suren Grigorian
try updating pip using
python3 -m pip3 install --upgrade pip3
and try again by specifying tensorflow version with
pip3 install tensorflow==2.3.1
I want to install tensorflow using pip. I ran pip install tensorflow but it shows an error message given below:
Could not find a version that satisfies the requirement tensorflow (from
versions: ) No matching distribution found for tensorflow
What OS? Which version of python?
If you are running a 32-bit version of python on Windows for example, tensorflow is not supported.
Also could be the case that your pip is not upgraded, in that case do:
pip install --upgrade pip
Also if you are using python 3.7, not yet supported by tensorflow.