Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tensorflow r1.0 : could not a find a version that satisfies the requirement tensorflow

I want to install Tensorflow 1.o for python on windows.

This is information for my system.

D:\>python --version Python 3.5.2 :: Anaconda 4.2.0 (32-bit)  D:\>pip3 --version pip 9.0.1 from d:\web\anaconda\lib\site-packages (python 3.5)' 

But, when I execute below command,

D:\>pip3 install tensorflow Collecting tensorflow   Could not find a version that satisfies the requirement tensorflow (from versions: ) No matching distribution found for tensorflow 

I don't understand what the problem is...

And I tried another way...

This is case when I use Conda

(tensorflow) D:\>pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl tensorflow-1.0.0-cp35-cp35m-win_x86_64.whl is not a supported wheel on this platform. 

What is the problem?

like image 890
ceounii lee Avatar asked Feb 18 '17 15:02

ceounii lee


People also ask

Could not find a version that satisfies the requirement tensorflow == 1.0 0?

Tensorflow is only working with 64-bit version of Python. If you are using 32-bit version of Python then you have to face this error. So That Just use install the 64-bit version of Python latest version via Python's website.

Could not find a version that satisfies the requirement requests?

How To Solve Could not find a version that satisfies the requirement Error ? To Solve Could not find a version that satisfies the requirement Error You just need to update pip and your error will be resolve. Just follow this command. If you are windows users Then run this command.


2 Answers

I was in same problem.

Below command solved my problem

pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl 

to find the list of all the urls based on the python version and CPU or GPU only refer to: https://www.tensorflow.org/install/pip

like image 113
Moynul Haque Biswas Avatar answered Sep 19 '22 10:09

Moynul Haque Biswas


Tensorflow requires a 64-bit version of Python.

Additionally, it only supports Python 3.5.x through Python 3.8.x.

If you're using a 32-bit version of Python or a version that's too old or new, then you'll get that error message.

To fix it, you can install the 64-bit version of Python 3.8.6 via Python's website.

like image 31
Franck Dernoncourt Avatar answered Sep 22 '22 10:09

Franck Dernoncourt