1.ImportError: DLL load failed: 動態連接庫(DLL)初始化例程失敗。測試
進入終端,輸入如下代碼:.net
>pip uninstall tensorflow3d
>pip install --ignore-installed --upgrade tensorflow==1.5code
測試:blog
import tensorflow as tf
hello = tf.constant('hello,TensorFlow')
sess = tf.Session()
print(sess.run(hello))
2.以下所示,解決了動態連接庫報錯,出現了新的問題。
將h5py包升級到2.9.0版本沒法解決ip
參考:https://blog.csdn.net/wangguan9527/article/details/82845409,這篇文章寫得好詳細,對我仍是解決不了報錯pycharm
試着在pycharm和prompt終端卸載也不行it
最後,進入安裝路徑,E:\Anaconda3\Lib\site-packages,刪除h5py安裝文件,再去pycharm中卸載。pip
解決!