import QCustomPlot2 ImportError: DLL load failed: The specified procedure could not be found
import QCustomPlot2 ImportError: DLL load failed: The specified procedure could not be found
我正在尝试让 QCustomPlot2 在 Ppython 3.7 Anaconda 安装上工作 Windows 10 x64
我尝试通过 pip
和 easy_install
通过 qt cmd 构建 qcustomplot2 安装并将 .pyd
文件移动到多个位置。我从 conda 更新了 pyqt,然后破坏了安装。然而,即使安装了 qcustomplot2,并且没有给出 dll 错误,我在从示例调用它时遇到堆栈缓冲区溢出错误。
我正在使用 PyCharm IDE
好吧,这不是真正的答案,而是解决方法:
我使用 PyQt5
而不是 PySide2
并且 你必须在 QCustomPlot2
之前导入它
无效:
>>> import QCustomPlot2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: DLL load failed while importing QCustomPlot2
作品:
>>> import PyQt5
>>> import QCustomPlot2
我正在尝试让 QCustomPlot2 在 Ppython 3.7 Anaconda 安装上工作 Windows 10 x64
我尝试通过 pip
和 easy_install
通过 qt cmd 构建 qcustomplot2 安装并将 .pyd
文件移动到多个位置。我从 conda 更新了 pyqt,然后破坏了安装。然而,即使安装了 qcustomplot2,并且没有给出 dll 错误,我在从示例调用它时遇到堆栈缓冲区溢出错误。
我正在使用 PyCharm IDE
好吧,这不是真正的答案,而是解决方法:
我使用 PyQt5
而不是 PySide2
并且 你必须在 QCustomPlot2
无效:
>>> import QCustomPlot2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: DLL load failed while importing QCustomPlot2
作品:
>>> import PyQt5
>>> import QCustomPlot2