出现这个错误的原因是 tensorflow.examples.tutorials 是 tensorflow 1.x 版本的
tensorflow2.x 版本是没有的
在 tensorflow2.x 版本中想用的话需要在tensorflow的安装路径下添加 examples 文件夹
链接:https://pan.baidu.com/s/1LdRMNSD5BA_axjipYQRzDw
提取码:eabz
然后把 tutorials 文件夹放进 examples 文件夹中
运行
from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("MNIST_data", one_hot=True)
print ( '输入数据:', mnist.train.images)
print ( '输入数据打shape:', mnist.train.images.shape)
import pylab
im = mnist.train.images[1]
im = im.reshape(-1 ,28)
pylab.imshow(im)
pylab.show()
出行上面这样子,就说明解决了No module named ‘tensorflow.examples.tutorials