How to uninstall Tensorflow from Ubuntu/Linux Completely?

Here is How to uninstall Tensorflow from Ubuntu or any other Linux OS easily with this step by step guide below.

What is Tensorflow?

Tensorflow is an open source platform for machine learning developed by Google Brain Team. It has a set of tools and an ecosystem to create ML powered applications. Tensorflow is hard to learn and hard to use and is commonly used to create large-scale neural networks.

How to uninstall Tensorflow from Ubuntu?

Although there are many ways to uninstall Tensorflow from Ubuntu but there is a generic way to do which is given below:

sudo pip uninstall protobuf
sudo pip uninstall tensorflow

To Install Tensorflow on Ubuntu

sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp27-none-linux_x86_64.whl

You can also use this method if above method is not working

python3 -m pip uninstall protobuf    
python3 -m pip uninstall tensorflow-gpu

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top