Centos7下安裝 TensorFlow1.3.0
阿新 • • 發佈:2018-12-09
1.檢視Centos版本
以下華為雲伺服器官網顯示的簡略資訊:
命令列檢視的結果:
cat /etc/centos-release
我租的華為雲伺服器自帶Python2.7
2.檢視Python版本:
如果沒有Python請自行安裝
(退出Python請輸入ctrl+d)
3.安裝pip
yum install epel-release
yum install -y python-pip
4.安裝TensorFlow:
pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.3.0-cp27-none-linux_x86_64.whl
(如果想安裝其他TensorFlow版本,把版本號改一下就行,如果Python版本以及作業系統支援的話。比如安裝TF1.1.0:
pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.1.0-cp27-none-linux_x86_64.whl)
安裝TensorFlow指令可檢視官網:
5.檢視安裝結果:
import tensorflow as tf
print tf.__version__