Tensorflow-gpuのインストールを検証しようとすると、「import tensorflow as tf」を実行しようとするとImportErrorが発生します。 Windows 7でQuadro K620を使用しています。pensorを使用してTensorflowをインストールしました。
スタックトレースは次のとおりです。
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\aagarwal>python
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:18:55) [MSC v.1900 64 bit (AM
D64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow as tf
Traceback (most recent call last):
File "C:\Users\aagarwal\AppData\Local\Programs\Python\Python35\lib\site-packag
es\tensorflow\python\pywrap_tensorflow_internal.py", line 18, in swig_import_hel
per
return importlib.import_module(mname)
File "C:\Users\aagarwal\AppData\Local\Programs\Python\Python35\lib\importlib\_
_init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 986, in _gcd_import
File "<frozen importlib._bootstrap>", line 969, in _find_and_load
File "<frozen importlib._bootstrap>", line 958, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 666, in _load_unlocked
File "<frozen importlib._bootstrap>", line 577, in module_from_spec
File "<frozen importlib._bootstrap_external>", line 906, in create_module
File "<frozen importlib._bootstrap>", line 222, in _call_with_frames_removed
ImportError: DLL load failed: The specified module could not be found.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\aagarwal\AppData\Local\Programs\Python\Python35\lib\site-packag
es\tensorflow\python\pywrap_tensorflow.py", line 41, in <module>
from tensorflow.python.pywrap_tensorflow_internal import *
File "C:\Users\aagarwal\AppData\Local\Programs\Python\Python35\lib\site-packag
es\tensorflow\python\pywrap_tensorflow_internal.py", line 21, in <module>
_pywrap_tensorflow_internal = swig_import_helper()
File "C:\Users\aagarwal\AppData\Local\Programs\Python\Python35\lib\site-packag
es\tensorflow\python\pywrap_tensorflow_internal.py", line 20, in swig_import_hel
per
return importlib.import_module('_pywrap_tensorflow_internal')
File "C:\Users\aagarwal\AppData\Local\Programs\Python\Python35\lib\importlib\_
_init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
ImportError: No module named '_pywrap_tensorflow_internal'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\aagarwal\AppData\Local\Programs\Python\Python35\lib\site-packag
es\tensorflow\__init__.py", line 24, in <module>
from tensorflow.python import *
File "C:\Users\aagarwal\AppData\Local\Programs\Python\Python35\lib\site-packag
es\tensorflow\python\__init__.py", line 51, in <module>
from tensorflow.python import pywrap_tensorflow
File "C:\Users\aagarwal\AppData\Local\Programs\Python\Python35\lib\site-packag
es\tensorflow\python\pywrap_tensorflow.py", line 52, in <module>
raise ImportError(msg)
ImportError: Traceback (most recent call last):
File "C:\Users\aagarwal\AppData\Local\Programs\Python\Python35\lib\site-packag
es\tensorflow\python\pywrap_tensorflow_internal.py", line 18, in swig_import_hel
per
return importlib.import_module(mname)
File "C:\Users\aagarwal\AppData\Local\Programs\Python\Python35\lib\importlib\_
_init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 986, in _gcd_import
File "<frozen importlib._bootstrap>", line 969, in _find_and_load
File "<frozen importlib._bootstrap>", line 958, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 666, in _load_unlocked
File "<frozen importlib._bootstrap>", line 577, in module_from_spec
File "<frozen importlib._bootstrap_external>", line 906, in create_module
File "<frozen importlib._bootstrap>", line 222, in _call_with_frames_removed
ImportError: DLL load failed: The specified module could not be found.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\aagarwal\AppData\Local\Programs\Python\Python35\lib\site-packag
es\tensorflow\python\pywrap_tensorflow.py", line 41, in <module>
from tensorflow.python.pywrap_tensorflow_internal import *
File "C:\Users\aagarwal\AppData\Local\Programs\Python\Python35\lib\site-packag
es\tensorflow\python\pywrap_tensorflow_internal.py", line 21, in <module>
_pywrap_tensorflow_internal = swig_import_helper()
File "C:\Users\aagarwal\AppData\Local\Programs\Python\Python35\lib\site-packag
es\tensorflow\python\pywrap_tensorflow_internal.py", line 20, in swig_import_hel
per
return importlib.import_module('_pywrap_tensorflow_internal')
File "C:\Users\aagarwal\AppData\Local\Programs\Python\Python35\lib\importlib\_
_init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
ImportError: No module named '_pywrap_tensorflow_internal'
Failed to load the native TensorFlow runtime.
See https://www.tensorflow.org/install/install_sources#common_installation_probl
ems
for some common reasons and solutions. Include the entire stack trace
above this error message when asking for help.
>>>
パスを修正するなど、他の複数のスタックオーバーフローポストを調べましたが、この問題を解決できませんでした。
今日同じ問題に出くわしました。@ mickdelaneyが提案した代わりにWindows用のcuDNN v5.1ライブラリに切り替えてから、
CUDAの環境設定を確認します。通常は、CUDAのすべての設定がWindows環境に追加されていました。
CuDNNのbin
、lib
およびinclude
にあるファイルを、それぞれCUDAのbin
、lib
およびinclude
にコピーします。通常、ディレクトリはC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA
そして、テンソルフローをインポートしてコードを実行できます。がんばろう!
CPUの解決策を見つけた:それは私のために働いた
必要に応じて以下のコマンドを実行して更新してください
pip install tensorflow==1.5
CUDAドライバーをインストールしたら、cuDNNをダウンロードしてリリースする必要があります。その後、cudnn64_5.dll
をPATHにコピーします。
それでもうまくいかない場合は、cudnn64_5.dll
をNVIDIA GPU Computing Toolkit\CUDA\v8.0\bin
に移動して、もう一度試してください。そうしないと、表示されるエラーが発生します。
現在のバージョンのtensorflowをアンインストールし、コードを使用してTensorFlow 0.12などの低バージョンを試すことができます
pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0rc0-cp35-cp35m-win_AMD64.whl
https://blog.csdn.net/baidu_36669549/article/details/7973459
https://github.com/tensorflow/tensorflow/issues/7705
6.0ではなくcuDNN 5.1に切り替える
CuDNN 5.1のインストール後もこのエラーが表示されます(はい、PATHが正しく設定されていました)。 このサイト からtensorflow_gpuをインストールする方が幸運でした。これには、5.1ではなくcuDNN 6.0が必要です。残念ながら、現在、GPUシステム用のTensorflow 1.1しかありません。
Anacondaでも同じエラーが発生しました。以前にanacondaを介して別のプログラムでインストールされました。 conda-forge
を介して再度インストールした場合:conda install -c conda-forge tensorflow
これは、TF VERSIONとのビデオチップ/カードおよびCPUの互換性に関するすべてです! Tensor Flowの現在のバージョンは1.8であり、両方のマシンでクラッシュします。
I5 CPUとIntelビデオチップを使用したwin7 Gatewayノートブックがあります。 AMD Phenom IIとAMD Radeon HD5450ビデオカードを搭載したデスクトップwin7ユニットがあります。 I5ノートブックにはV1.6のTensorFlowが必要で、デスクトップAMDユニットにはV1.5が必要です。 ANNの実行に使用できるGPUがないので、それがどのように影響するかわかりません。
PIPインストールのコマンドラインは次のとおりです。pip install --upgrade tensorflow == 1.5.0(または他の必要なバージョン)。これにより、現在のバージョンがアンインストールされ、指定されたバージョンがインストールされます。
小さなTensorFlowスクリプトをビルドまたはコピーして、コマンドウィンドウで実行します。 2番目のコマンドウィンドウを開き、別のバージョンをインストールします。 1.5から始めて作業を進めることをお勧めします。
私は中国語なので、私の英語は貧弱で、私の答えは、ファイルをコピーした後、cudnn 7または6または5を使用するが、dllの名前をcudnn64_x.dllからcudnn64_6.dllに変更する必要があるということです。おそらくすぐに、dllの名前をできるだけ7または8または9に変更する必要があります。
私のために働いた唯一のこと(Windows 10):インストール Microsoft Visual C++ 2015再頒布可能アップデート 新しい新しいコンピューターのセットアップがある場合、これは見逃すかもしれません。