Issues while installing tensorflow for Python 3.7 in Mac - python-3.x

I am using macOS Sierra(on GPU support) with python3.7.0 installed.
Whenever I am trying to install tensorflow with the following command,
pip3 install tensorflow
I am getting the following issues:
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow.
Any help or suggestions are welcome.

Tensorflow does not support Python 3.7 yet. Use Python 3.6. See https://github.com/tensorflow/tensorflow/issues/17022.

Related

Unable to run Rasa

I have been trying to install and use Rasa for one of my Assignment for 2 days. I have tried everything. I have tried using it with python 3.9, python 3.7.x and currently I have installed python 3.6.8 for which the error message is shown below. I have tried to find the solution via github discuss sections, but nothing has helped me yet. Can anyone tell me how can I resolve this?
Installed versions:
Rasa Version Installed: 2.3
Python version 3.6.8
Pip version 18.1
tensorflow version 2.3.1
The install steps can be found here along with the supported Python versions. 3.9 is not supported.
This is a TensorFlow loading issue which is probably related to your system configuration. There is more information here
I faced this problem and solved it by installing tensorflow using conda.
Another way can be using virtual environment.

Could not find a version that satisfies the requirement tensorflow (from versions: none)

When i execute the command in my terminal
pip install --upgrade tensorflow
i get an error
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow
There was a similiar question in stackoverflow. The cause for this error is that tensorflow supports only up to Python 3.7. So i checked my version
python3 --version3
--> 3.8.1
I tried to downgrade it with
conda install python=3.7
---> Collecting package metadata (current_repodata.json): done
Solving environment: done
# All requested packages already installed.
but it does not work. How can this be?
I am using manjaro as a distro.
Could the Python3.7 you're running be the 32-bit version? Tensorflow requires the 64-bit version of python.

How to install TensorFlow on Windows

I'm trying to install tensorflow library by using de command:
> pip install tensorflow
I already have the latest version of python (3.8.0), but I'm getting the next error message:
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow
What am I missing?
Now Tensorflow supports Python 3.8
install Tensorflow using
pip install tensorflow
Follow the instructions mentioned in the Tensorflow website.

ERROR: Could not find a version that satisfies the requirement tensorflow (fro versions: none)

I have MS Server 2012R2x64 and Python3.7 , i have installed needed packages, but when i try install tensorflow, i get sush error
C:\Windows\system32>pip3 install tensorflow
Collecting tensorflow
ERROR: Could not find a version that satisfies the requirement tensorflow (fro
m versions: none)
ERROR: No matching distribution found for tensorflow
I saw many similar topics here, but no one helped me.
This error means that there is no version(distributuon) for my OS,
Why there is no distirbution? because on my Win 8.1 x 64, python 3.7.2 tensorflow was installed very quickly. But on my server there is more RAM, so to perform analysis i need my server.
How to install tensorflow on my server?
In case people are still having this problem, it seems TensorFlow simply stopped hosting certain versions from PyPI. The pip error should now tell you what options are actually available. For example:
$ pip install tensorflow==1.11.0
Collecting tensorflow==1.11.0
ERROR: Could not find a version that satisfies the requirement tensorflow==1.11.0 (from versions: 1.13.0rc1, 1.13.0rc2, 1.13.1, 1.13.2, 1.14.0rc0, 1.14.0rc1, 1.14.0, 2.0.0a0, 2.0.0b0, 2.0.0b1, 2.0.0rc0)
ERROR: No matching distribution found for tensorflow==1.11.0
To install tensorflow normally with pip from a requirements file, you have to use one of the supported versions for example the ones listed above. The closest one for the example would be 1.13.1. However the easiest fix is to change the requirement to tensorflow>=1.11.0, which will install the latest ver 1 distribution, 1.14.0.
Try to follow with these instructions:
Install TensorFlow with pip
In particuar, you can try using this command:
python3 -m pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.12.0-py3-none-any.whl
but if it does not work, additional tips or other URLs can be found under the link above.
I hope I helped.

Installing tensorflow issue

I am trying to install tensorflow. I have downloaded python 3.5 64 bit. It is on my path. I also have python 3.6 32 bit and python 2.7 32 bit. I want to install with pip but whenever I do this I get this error
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (ons: )
No matching distribution found for tensorflow
Does anyone have any suggestions?

Resources