ImportError:没有名为examples.tutorials.mnist

时间:2017-05-05 16:35:10

标签: python tensorflow mnist

我对此错误感到非常沮丧,我所做的是从张量流教程中获取导入潮湿的代码:

from tensorflow.examples.tutorials.mnist import input_data
mnist = input_data.read_data_sets("MNIST_data/", one_hot=True)

然而,当我运行python节目时:

文件“/ Users / kevinling / Desktop / Machine Learning / tensorflow.py”,第2行,in     来自tensorflow.examples.tutorials.mnist import input_data ImportError:没有名为examples.tutorials.mnist的模块

当我检查目录时,文件完全存在:

目录是:

enter image description here

input_data.py如:

The input_data.py

2 个答案:

答案 0 :(得分:2)

只需将您的示例从“ tensorflow.py”重命名为其他任何名称,它将起作用。解释程序正在尝试从脚本中导入必要的文件。

答案 1 :(得分:-2)

你已经安装了tensorflow吗?如果没有,请关注他们的install instructions或只使用pip安装:

pip install tensorflow

现在,请确保您当前位于tensorflow所在的文件夹中 NOT ,并尝试运行您的脚本。

python your_script.py