サイトアイコン RのWeb制作

[Python] tensorflowが「ImportError: DLL load failed」で困った件について

ImportError: DLL load failed: The specified module could not be found

おおん・・・?
今回Tensorflowの新バージョン2.0.0入れたりしてたら、上記のエラーが出た。

Jupyter上での当該コマンドはこちら。

!pip install tensorflow-gpu==2.0.0-alpha0

動かねえ・・・というわけで調べてました。

Github

特に重要そうなコメントが、
I finally solve the problem by installing cuda 9.0 instead of 9.2 or 10.0 with tensorflow 1.12.0 and cudnn 7.4.1.5
です。

なるほど。
原因は「複数モジュールのバージョン不一致でなんか読めねえ!」か。

というわけで再度インストールし直すと。
今回はtensorflow-gpuしか調整してないので・・・

こちらはコマンドラインで

pip uninstall tensorflow-gpu
pip install tensorflow-gpu==1.12.0

バージョン指定はしてもしなくてもOK。

これで解決!

モバイルバージョンを終了