我正在尝试将 pynsist 与底图一起使用。我从 pynsist 的“猜数字”示例开始。我在 Windows 上,使用 python 3.5.1。
创建程序pynsist installer.cfg
并安装它工作正常,但是当我尝试运行已安装的程序时,我得到ImportError: No module named ...
了各种模块。我将模块添加到[Include]
部分installer.cfg
以修复这些导入错误。添加这些模块后,的include部分installer.cfg
是
[Include]
packages=guessnumber
mpl_toolkits
matplotlib
six
numpy
pyparsing
cycler
dateutil
有了这些,ImportError: No module named '_geoslib'
当我运行已安装的程序时,我仍然会收到错误消息。
如何修复此错误?
整个示例应用程序可以在https://github.com/takluyver/pynsist/tree/master/examples/console找到
我对它所做的唯一修改是
- 上面显示的
[Include]
installer.cfg 部分 - 添加
from mpl_toolkits.basemap import Basemap
到顶部guessnumber.py