import QtCore的時候出錯
from PyQt5 import QtCore
ImportError: DLL load failed while importing QtCore:
The specified procedure could not be found.
問題是 pip 安裝的PyQt和其他package版本不對
最好使用conda進行安裝
pip uninstall pyqt5
# pip uninstall pyqt5-tools
# pip uninstall pyqt5-plugins
conda install -c anaconda pyqt
也是我下面這個回答
https://stackoverflow.com/a/72949403/14497253
其他問題:
import matplotlib
matplotlib.use("Qt5Agg")
import matplotlib.pyplot as plt
raise ImportError("Failed to import any qt binding")
ImportError: Failed to import any qt binding
也是同樣的原因
下面是網(wǎng)上其他的答案砾肺,我試了基本都沒用
重新創(chuàng)建一個環(huán)境
https://blog.csdn.net/weixin_37706204/article/details/120492652
將Python3.dll拷貝到執(zhí)行程序所在目錄,調(diào)試執(zhí)行权纤,一切正常旭旭,問題解決。