- Create a new cloud 9 account if you don't have one already. Free is fine. - Create a new instance. Public is fine. - Run the following: ``` sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe restricted multiverse" sudo apt-get update sudo apt-get upgrade sudo apt-get install python-pip python-dev ``` You might see some error messages esp with sudo-apt-get upgrade but it may still work. The next couple of steps may change slightly if a new Tensorflow is released. If the URL isn't working, please see the instruction on [their site](https://www.tensorflow.org/versions/r0.9/get_started/os_setup.html). ``` export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp27-none-linux_x86_64.whl sudo pip install --upgrade $TF_BINARY_URL ```