Created
January 26, 2017 10:53
-
-
Save noisychannel/35a0638911f9d6afcacf2cb04e417534 to your computer and use it in GitHub Desktop.
TensorFlow INSTALL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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