Tensorflow Journey

I managed to finish most of the projects on Udacity Machine Learning Nano Degree program. And the last project that I need to complete is the Capstone Project, which give the student more choices and freedom to choose one of the topics proposed.

One of the topics purposed was suitable for Tensorflow. And since I'm also interested to learn Tensorflow, I decided to start the Tensorflow journey today.

Today, I'm installing Tensorflow on one of my VMware instant running Ubuntu. The instructions for the installation can be found on the website, which are:

sudo apt-get install python-pip python-dev
export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.10.0-cp27-none-linux_x86_64.whl
sudo pip install --upgrade $TF_BINARY_URL


At the first attempt, I installed a wrong version. I installed GPU version instead of CPU version. So I had to uninstall Tensorflow and install the correct version.

The instructions to uninstall is:
sudo pip uninstall protobuf
sudo pip uninstall tensorflow

Refference:
(1) https://www.tensorflow.org/versions/r0.10/get_started/os_setup.html
(2) http://askubuntu.com/questions/764032/how-to-uninstall-tensorflow-completely

Comments