Reputation: 75
I am having TensorFlow version 2.0.0 in my anaconda environment. I want to upgrade it to an upgraded version. How can I do it?
Upvotes: 6
Views: 24799
Reputation:
conda update <package name>
or
conda install <package name>
Note: A second install equals an Override...
Specific to your case:
conda install -c conda-forge -n <environment> tensorflow==<wanted version>
Upvotes: 7