pyqtgraph pyinstaller构建exe文件

时间:2014-01-02 13:35:46

标签: python pyqt pyinstaller pyqtgraph

我试图从我的python应用程序中使用pyqtgraph创建一个* .exe文件,使用pyinstaller创建pyqt库。 Pyinstaller生成一个* .exe文件没有错误,但是当我尝试启动它时,我得到一个错误,找不到pyqtgraph。

如何使用pyinstaller构建单个* .exe文件?

1 个答案:

答案 0 :(得分:1)

Pyinstaller不支持动态导入,动态导入在最新版本的pyqtgraph(0.9.8)中使用。但是,github(http://github.com/pyqtgraph/pyqtgraph)上的最新开发代码使用任何动态导入,并且可以更好地使用pyinstaller。

另一种选择是尝试py2exe,它确实支持动态导入。