Py2exe / Python26 / ArcGIS10不生成可执行文件

时间:2013-03-08 20:31:36

标签: python arcgis

我在我的计算机(32位系统,Windows XP)上运行ArcGIS 10,Python2.6和相应的py2exe版本。我一直在尝试将python脚本打包成一个Windows可执行文件。我的setup.py运行没有任何错误,但没有输出。我在我的脚本中使用wxpython并确保MSVCP90.DLL在我的引用目录中,但仍然没有运气。

这是我的setup.py:

from distutils.core import setup
from glob import glob
import py2exe

data_files = [("Microsoft.VC90.CRT.manifest", glob(r'C:\test\viscruntime\*.*'))]
setup(data_files=data_files, windows=["test.py"])

我应该提一下,这对我来说在ArcGIS9.3和Python 2.5上运行良好。

更新: 从命令行运行脚本产生了一个奇怪的可执行文件。从Wing IDE运行它不会。

0 个答案:

没有答案