本人小白搭建pyqt環境時遇到問題
運行代碼
from PyQt5 import QtCore'
發現錯誤
ImportError: DLL load failed: 找不到指定的模塊
這個問題折磨了很久,最後經過GitHub解決:python3.dll is missingpython
緣由描述:
經過Anaconda 安裝的Python缺乏了python3.dllgit
解決方法(針對anaconda3):
python3的能夠直接經過以下連接下載python3.dll,而後放到Anaconda中python36.dll所在目錄中
python3.dll
提取碼:t9iq
github