Installing tensorflow issue - python-3.x

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?

Related

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.

Installing Spacy is failing with Python 3.7 on Windows 10

Installing Spacy on Windows 10 with pip is failing. Installing any other of a number of modules is working fine for me.
Here is a pastebin containing the error message:
pip install -U spacy
or
python -m pip install spacy
output:
https://pastebin.com/Y9np4veN
I have tried this both with and without virtualenv and it is failing in the same manner either way. I have also already tried installing and updating setuptools. I've ensured that I am using Python 3.7 and pip3. There is no other version of python or pip installed on my PC.
I downgraded to Python 3.6 and was able to successfully install spacy
Using x86-64 ("64-bit") version of Python 3.7 (3.7.4) instead of x86 ("32-bit") one on Windows fixed the issue for me.

No matching distribution found for intel-numpy

I'm trying to install Intel's numpy version through pip on Windows as described on their website.
> python -m pip install intel-numpy
Collecting intel-numpy
Could not find a version that satisfies the requirement intel-numpy (from versions: )
No matching distribution found for intel-numpy
I have 64-bit Python on Windows 10 and the main numpy package isn't installed. What am I doing wrong?
The problem was my version of Python: intel-numpy is currently packaged for Python 3.6 and not 3.7. Installing Python 3.6 fixed it.

Issues while installing tensorflow for Python 3.7 in Mac

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.

how to install tensorflow to canopy

I am using canopy Version: 2.1.6.3665 (32 bit). Looking for help to install tensorflow. I tried following command using canopy command promt, however it didn't work
pip3 install --upgrage tensorflow
thanks
As far as I know, the tensorflow package is only distributed in 64 bit wheels (see https://pypi.python.org/pypi/tensorflow). Why do you need to use 32-bit Python?

Resources