Reputation: 1
I have below version of python: C:\Users\Dell\AppData\Local\Programs\Python\Python35-32\python.exe
and executed the command: pip3 install --upgrade tensorflow
getting the following error:
Collecting tensorflow==1.0.0
Could not find a version that satisfies the requirement tensorflow==1.0.0 (from versions: ) No matching distribution found for tensorflow==1.0.0
A solution of this issue will be appreciated Thanks :)
Upvotes: 0
Views: 4419
Reputation: 21
Try installing Anaconda 4.2.0 and then re-try. Additionally, if you want some feature of tf1, you can disable the v2 compatibility and enable v1:
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
Upvotes: 1
Reputation: 689
Why not installing the latest version 1.3.0 with sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.3.0-cp34-cp34m-linux_x86_64.whl
?
Upvotes: 0