1. 安装Anaconda
https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
conda info来查询安装信息
conda list可以查询你现在安装了哪些库
2. cpu版的tensorflow
pip install --upgrade --ignore-installed tensorflow
测试是否成功
python
import tensorflow as tf
hello=tf.constant("Hello!")
sess=tf.Session()
print(sess.run(hello))
3. 安装keras
pip install keras -U --pre
测试:import keras
来源:oschina
链接:https://my.oschina.net/u/4399667/blog/3985483