Tensorflow安装和测试

1.安装anaconda 4.2.0

2.安装tensorflow(在anaconda Prompt中进行)

Tensorflow安装和测试_第1张图片

输入pip install tensorflow会自动安装Tensorflow安装和测试_第2张图片

3.检查是否成功安装

 ①在jupyter Notebook中进行 

Tensorflow安装和测试_第3张图片

没有成功安装

import tensorflow as tf 

Tensorflow安装和测试_第4张图片

成功安装测试代码(2.1版本以上

import tensorflow as tf
tf.compat.v1.disable_eager_execution()
hello = tf.constant("hello,tensorflow")
sess= tf.compat.v1.Session()
print(sess.run(hello))

测试结果Tensorflow安装和测试_第5张图片

 ②显示tensorflow版本

import tensorflow as tf
tf.__version__

Tensorflow安装和测试_第6张图片

 

你可能感兴趣的:(tensorflow,tensorflow,学习,深度学习)