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 |