Skip to content

Instantly share code, notes, and snippets.

@satzz
Created July 9, 2016 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save satzz/06bb2117ec1ab5cfa778248bb9b5eb7c to your computer and use it in GitHub Desktop.
Save satzz/06bb2117ec1ab5cfa778248bb9b5eb7c to your computer and use it in GitHub Desktop.
$ wget http://repo.continuum.io/archive/Anaconda3-4.0.0-Linux-x86_64.sh
$ bash Anaconda3-4.0.0-Linux-x86_64.sh
exec $SHELL
$ conda -V
conda 4.0.5
$ conda create -n tensorflow python=2.7
$ source activate tensorflow
$ python -V
Python 2.7.11 :: Continuum Analytics, Inc.
$ pip -V
pip 8.1.1 from /home/ubuntu/anaconda3/envs/tensorflow/lib/python2.7/site-packages (python 2.7)
$ locale
$ export LC_ALL=C
$ pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp27-none-linux_x86_64.whl
$ python
>>> import tensorflow as tf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment