Skip to content

Instantly share code, notes, and snippets.

@noisychannel
Created January 26, 2017 10:53
Show Gist options
  • Save noisychannel/35a0638911f9d6afcacf2cb04e417534 to your computer and use it in GitHub Desktop.
Save noisychannel/35a0638911f9d6afcacf2cb04e417534 to your computer and use it in GitHub Desktop.
TensorFlow INSTALL
install_venv:
# Install a virtual environment
virtualenv tf_cpu
# Activate the virutal environment
source tf_cpu/bin/activate
# Install tensorflow
export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.12.1-cp27-none-linux_x86_64.whl
pip install $TF_BINARY_URL
install_no_venv:
# Install tensorflow
export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.12.1-cp27-none-linux_x86_64.whl
pip install --user $TF_BINARY_URL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment