一、在安装好 anaconda
后,即可通过anaconda
安装tensorflow
anaconda
安装请参考:http://blog.csdn.net/lzc4869/article/details/78697223
Anaconda
创建一个python3.5
(或者3.6都行,随便)的环境,环境名称为tensorflow
,输入下面命令:conda create -n tensorflow pip python=3.6
tensorflow
的环境:source activate tensorflow
tensorflow
时,关闭tensorflow
环境,命令为:source deactivate tensorflow
cpu
版本的TensorFlow
pip install --upgrade --ignore-installed tensorflow
test.py
验证脚本import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
tensorflow
环境#退出tensorflow环境
source deactivate tensorflow
#运行
pip install tensorflow
pip install --upgrade pip
二、直接在python3.6
中安装
cpu
版本的TensorFlow
sudo pip install --upgrade --ignore-installed tensorflow
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
因为anaconda
安装的时候用户默认为root
,所以装其他的装不上。
更改anaconda
目录的用户为xqt
(原来是root
)否则会导致安装不上,权限不够。
sudo chown -R xqt:xqt anaconda3/