在使用py2exe时,使用Numpy会创建一个tcl文件夹

时间:2014-01-26 00:20:52

标签: python numpy py2exe

在我的Python程序中使用py2exe时,我得到一个可执行文件,但也是一个tcl\文件夹。

这很奇怪,因为我的代码中根本没有使用tcl/tk且与tkinter无关。

为什么导入numpy负责添加此tcl\文件夹?如何防止这种情况发生?


test.py

import numpy

print 'hello'

PY2EXE代码

from distutils.core import setup
import py2exe

setup(script_args = ['py2exe'],   windows=[{'script':'test.py'}], options = {'py2exe': {'compressed':1,'bundle_files': 1}}, zipfile = None)

1 个答案:

答案 0 :(得分:11)

用于确定依赖关系的

Modulefinder模块会“混淆”并认为您需要Tkinter

如果您运行以下脚本...

from modulefinder import ModuleFinder

finder = ModuleFinder()
finder.run_script('test.py')
print finder.report()

...你会看到找到的模块(缩短):

  Name                      File
  ----                      ----
m BaseHTTPServer            C:\Python27\lib\BaseHTTPServer.py
m ConfigParser              C:\Python27\lib\ConfigParser.py
m FixTk                     C:\Python27\lib\lib-tk\FixTk.py
m SocketServer              C:\Python27\lib\SocketServer.py
m StringIO                  C:\Python27\lib\StringIO.py
m Tkconstants               C:\Python27\lib\lib-tk\Tkconstants.py
m Tkinter                   C:\Python27\lib\lib-tk\Tkinter.py
m UserDict                  C:\Python27\lib\UserDict.py
m _LWPCookieJar             C:\Python27\lib\_LWPCookieJar.py
...

现在我们知道Tkinter已导入,但它不是很有用。该报告未显示违规模块是什么。但是,通过修改py2exe脚本来排除Tkinter是足够的信息:

from distutils.core import setup
import py2exe

setup(script_args = ['py2exe'],
      windows=[{'script':'test.py'}],
      options = {'py2exe': {'compressed':1,
                            'bundle_files': 1,
                            'excludes': ['Tkconstants', 'Tkinter']
                            },
                 },
      zipfile = None)

通常这就足够了。如果您仍然好奇哪些模块是有问题的模块,ModuleFinder没什么用处。但您可以安装modulegraph及其依赖项altgraph。然后,您可以运行以下脚本并将输出重定向到HTML文件:

import modulegraph.modulegraph

m = modulegraph.modulegraph.ModuleGraph()
m.run_script("test.py")
m.create_xref()

您将获得依赖图,您将在其中找到:

numpy -> numpy.lib -> numpy.lib.utils -> pydoc -> Tkinter