Fix Error: could not find a version that satisfies the requirement tensorflow <from versions:> No Matching distribution found for Tensorflow
Tensorflow is an open source software library for machine intelligence. It is used for numerical computation using data flow graphs. Nodes in the graph represent mathematical operations while the using graph edges represent the multidimensional data arrays (tensors) communicated between them. Tensor flow was developed by google brain team, used for machine learning and deep neural network research but it’s used for many purposes.
But Tensor Flow Installation Makes a some errors in windows.Here Maxic Solutions found some solutions for installing tensor flow was successfully installed on your machine.
Let’s Start the Tensorflow Installation
Steps of Tensor Flow Installation
Step 1: Tesnor Flow Supported on Windows 7 64 Bit only .So Make ensure you installed windows 64 Bit OS
Step 2: Install the Python 3.5.0 . I provided the link Below
Link 1: Download Python 64 Bit
Link 2 : Download Python 64 Bit
If You Found the error Python needs a Service pack 1
Click Here to Solve Python Service Pack 1 in Windows
Step3: Before Installing tensor flow install C Redist
Link 1 : Download VC_redist
Link 2 : Download VC_redist
Step 4: open a cmd(Command Prompt) in windows.Upgrade the pip using cmd enter the following command
python -m pip install –upgrade pip
Step 5: After Upgrading the pip,Then Install tensor using the command prompt(cmd)
pip install tensorflow
Step 6:Test Tensor Flow using a Code in Python
Code For Testing Tensorflow
>> import tensorflow as tf
>>> hello = tf.constant(‘Hello, TensorFlow!’)
>> sess = tf.Session()
>> print(sess.run(hello))