Forked from thoolihan/install_tensorflow_centos7.sh
Last active
March 26, 2017 08:56
-
-
Save EddieOne/30dc4d60bac124be312d62423485f428 to your computer and use it in GitHub Desktop.
Install TensorFlow on CentOS 7
This file contains hidden or 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
#!/bin/bash | |
# Instant TensorFlow for centos 7 | |
# Right click Raw and copy link -> | |
curl https://bootstrap.pypa.io/get-pip.py | python - | |
pip install tensorflow # Python 2.7; CPU support (no GPU support) | |
#pip3 install tensorflow # Python 3.n; CPU support (no GPU support) | |
#pip install tensorflow-gpu # Python 2.7; GPU support | |
#pip3 install tensorflow-gpu # Python 3.n; GPU support |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment