1. 安装anaconda,直接官网下载
2,CPU版本 pip3 install --upgrade tensorflow,GPU版本 pip3 install --upgrade tensorflow-gpu。安装需要一段时间。
3.做个简单的测试
#!/usr/bin/python3 # -*- coding: utf-8 -*- import tensorflow as tf sess = tf.Session() a = tf.constant(10) b = tf.constant(22) print(sess.run(a + b))