python – Cannot uninstall Tensorflow
python – Cannot uninstall Tensorflow
Try
pip uninstall tensorflow-cpu
or
pip uninstall tensorflow-gpu
Did you try uninstalling by removing protobuf first and then tensorflow
sudo pip uninstall protobuf
sudo pip uninstall tensorflow
And most probably you didnt installed tensorflow via conda thats why you were getting that error(package not found)
To figure out which package was used to install the particular package you can list using the following command
conda list
pip list
. …etc
And use appropriate command to uninstall the package
python – Cannot uninstall Tensorflow
Try pip uninstall tensorflow-___ at the place of dashes add CPU or gpu according to the build that you have installed.