Reputation: 41665
I have installed tensorflow-gpu by
conda install tensorflow-gpu
and its version is 1.12.0
tensorboard 1.12.2 py36he6710b0_0
tensorflow 1.12.0 gpu_py36he74679b_0
tensorflow-base 1.12.0 gpu_py36had579c0_0
tensorflow-gpu 1.12.0 h0d30ee6_0
I need to upgrade them to at least 1.13 to use tensorflow/models .
I've looked at conda search tensorflow
and conda search -c conda-forge tensorflow
, the highest version is 1.12.0 , how do I upgrade the version?
I installed via conda, because blogs suggest it's easier that way to use gpu.
(https://towardsdatascience.com/stop-installing-tensorflow-using-pip-for-performance-sake-5854f9d9eb0c)
Upvotes: 8
Views: 12131
Reputation: 116
These actions helped me on Windows:
I removed tensorflow related libraries with the conda remove tensorflow-gpu tensorboard tensorflow tensorflow-base tensorflow-estimator
command.
Then I checked the latest version: conda search tensorflow
. It was 1.14.0
So I installed this version: conda install tensorflow-gpu==1.14.0
Upvotes: 8