本人小白搭建pyqt環境時遇到問題
運行代碼
from PyQt5 import QtCore'
發現錯誤
ImportError: DLL load failed: 找不到指定的模塊
這個問題折磨了好久,最后通過GitHub解決:python3.dll is missing
原因描述:
通過Anaconda 安裝的Python缺少了python3.dll
解決方法(針對anaconda3):
python3的可以直接通過如下鏈接下載python3.dll,然后放到Anaconda中python36.dll所在目錄中
python3.dll
提取碼:t9iq
