'Installation of tensor flow on windows

When I installed tensor flow, after type following command pip3 install --upgrade tensor flow following issue rose up

Could not find a version that satisfies the requirement tensor flow (from versions: ) No matching distribution found for tensor flow

any solutions??



Solution 1:[1]

"tensorflow" is one word, the correct installation command is:

pip3 install --upgrade tensorflow

Also, it should be noted TensorFlow for Windows only supports 64bit architecture, if you have a 32bit installation of python, it will give you this error.

You can check your architecture by running:

import platform
platform.architecture()

Solution 2:[2]

Tensorflow is very easy to install, just follow the doc, you will finish it easily. In you install command you should use tensorflow not tensor flow.

Solution 3:[3]

"tensorflow" is very easy to install. there are two ways to install.

1st way:

you need to download the tensorflow whl file from link here. Once you are done with downloading. open a cmd.exe and type

    pip install <file_location>\<filename.whl>

and hit enter. It will install the library in your system.

2nd option: you can go to the link here. and follow the instruction for windows.

make sure you install python 3.5

Solution 4:[4]

Install

pip install tensorflow

Verify the installation

python3 -c "import tensorflow as tf;
print(tf.reduce_sum(tf.random.normal([1000, 1000])))"

your mistake is that you're writing it separately. pip3 install --upgrade tensor flow

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Aaron N. Brock
Solution 2 LF00
Solution 3 Dipak Bhagat
Solution 4 Francesco Boi