How to uninstall TensorFlow completely?
I accidentally installed TensorFlow for Ubuntu/Linux 64-bit, GPU enabled. When I installed with Linux 64-bit CPU only, I am getting Segmentation fault while importing tensorflow from python console.
12 Answers
Depends on how you install it considering the fact that there are multiple ways to do it here. Most generic way people do it is through pip, check using:
sudo pip show tensorflowUninstall using:
sudo pip uninstall protobuf
sudo pip uninstall tensorflowInstall it using:
sudo pip install --upgrade 10 When running in conda env or any virtual env sudo doesn't work. So you can use:
python3 -m pip uninstall protobuf
python3 -m pip uninstall tensorflow-gpupython3 -m is safest way to ensure that you are using pip3 and not pip2.