Makoto Miyazaki
Makoto Miyazaki

Reputation: 1983

Uninstalling TensorFlow from Anaconda environment

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

Answers (5)

Aarif Ansari
Aarif Ansari

Reputation: 1

It can be easily uninstall by
conda uninstall tensorflow
from Anaconda

Upvotes: 0

Ankit Shukla
Ankit Shukla

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

open anaconda navigator and select environment from which package you want to uninstall

left click on the rectangular box and select mark for removal and finally click apply button

Upvotes: 2

javac
javac

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

Ibrahim
Ibrahim

Reputation: 221

If you have installed using pip then use:

pip uninstall tensorflow 

Upvotes: 22

Max S.
Max S.

Reputation: 4204

You can remove a package with the conda remove command. So for TensorFlow this would be conda remove tensorflow.

Upvotes: 37

Related Questions