Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save EddieOne/30dc4d60bac124be312d62423485f428 to your computer and use it in GitHub Desktop.
Save EddieOne/30dc4d60bac124be312d62423485f428 to your computer and use it in GitHub Desktop.
Install TensorFlow on CentOS 7
#!/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