Reputation: 1983
Does anyone know how to uninstall TensorFlow from Anaconda environment? I want to upgrade the TensorFlow to the latest version which is ver.1.4, but not working well. So I want to uninstall it and then install the newest version.
Upvotes: 23
Views: 135611
Reputation: 1
It can be easily uninstall by
conda uninstall tensorflow
from Anaconda
Upvotes: 0
Reputation: 313
How to remove packages from Anaconda environment
Step 1:open anaconda navigator and select environment from which package you want to uninstall
Step 2:left click on the rectangular box and select mark for removal and finally click apply button
Upvotes: 2
Reputation: 2999
The following helped me to completely remove Tensorflow after I used conda remove tensorflow
and pip uninstall tensorflow
python3 -m pip uninstall protobuf
python3 -m pip uninstall tensorflow
python3 -m pip uninstall tensorflow-gpu
Upvotes: 8
Reputation: 221
If you have installed using pip then use:
pip uninstall tensorflow
Upvotes: 22
Reputation: 4204
You can remove a package with the conda remove
command. So for TensorFlow this would be conda remove tensorflow
.
Upvotes: 37