回答編集履歴
1
詳細
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
`from tensorflow.examples.tutorials.mnist import input_data` に対してエラーが、 `ImportError: No module named examples.tutorials.mnist` ですから、 `tesorflow` という名前のインポートはできてます
|
1
|
+
`from tensorflow.examples.tutorials.mnist import input_data` に対してエラーが、 `ImportError: No module named examples.tutorials.mnist` ですから、 `tesorflow` という名前のインポートはできているように思います。
|
2
2
|
|
3
3
|
なら
|
4
4
|
|
@@ -18,6 +18,8 @@
|
|
18
18
|
|
19
19
|
|
20
20
|
|
21
|
+
普通は `site-packages` の下、 `.../lib/pythonX.Y/site-packages/tensorflow/__init__.py` のような場所を指すはずです。(X,Y はバージョン番号)
|
21
22
|
|
22
23
|
|
24
|
+
|
23
|
-
|
25
|
+
カレントディレクトリに `tensorflow.py` という名前のファイルを置いてしまって `import tensorflow` がそのファイルを指しているとか、そういうミスをした時にそれと分かります。
|