用户工具

站点工具


python-files:py2exe-matplotlib

py2exe打包matplotlib发布程序

使用py2exe打包发布matplotlib应用程序其实很简单,只需要将matplotlib的数据文件包含在内就可以了。

在setup.py文件中加入 data_files=matplotlib.get_py2exe_datafiles() 语句。

import matplotlib
...
setup(
    ...
    data_files=matplotlib.get_py2exe_datafiles(),
)

参考

python-files/py2exe-matplotlib.txt · 最后更改: 2011/07/14 15:15 (外部编辑)