Installing TensorFlow is not a tedious task if you have a fast Internet connection. The main tool we need to have is pip. It is a package management system used to install and manage software packages written in Python.
Here is the command to install pip on Ubuntu:
$ sudo apt-get install python-pip python-dev
After installing pip, you have to execute the following command to set a BASH variable called TF_BINARY_URL. This is for installing the correct binaries for our configuration. The following variable is for the Ubuntu 64 bit, Python 2.7, CPU only version:
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.11.0-cp27-none-linux_x86_64.whl ...