Traceback (most recent call last):
File "nearest_neighbor.py", line 14, in <module>
from tensorflow.examples.tutorials.mnist import input_data
File "nearest_neighbor.py", line 14, in <module>
from tensorflow.examples.tutorials.mnist import input_data
ImportError: No module named examples.tutorials.mnist
安装的tensorflow升级版本后就OK了, 0.8.0 -> 0.9.0
sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0rc0-cp27-none-linux_x86_64.whl
sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/protobuf-3.0.0b2.post2-cp27-none-linux_x86_64.whl
本文介绍了如何解决在使用TensorFlow时遇到的版本不兼容问题,特别是针对从0.8.0升级到0.9.0过程中出现的错误,并提供了具体的安装命令。
2710





