Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 604
Makoto Miyazaki Avatar asked Jan 11 '18 13:01

Makoto Miyazaki


2 Answers

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

like image 169
Max S. Avatar answered Sep 30 '22 10:09

Max S.


If you have installed using pip then use:

pip uninstall tensorflow 
like image 40
Ibrahim Avatar answered Sep 30 '22 10:09

Ibrahim