Python - 使用py2exe和pandas

时间:2016-10-31 14:09:54

标签: python pandas py2exe

我试图从我的python代码创建一个* .exe文件。

这是我的saveold文件:

setup.py

代码在我的机器上运行正常,但是当我在不同的机器上运行exe时,我收到以下错误:

from distutils.core import setup
import py2exe
import matplotlib
import sys
sys.setrecursionlimit(5000)

setup(

    options={
    'py2exe':
        {
           'includes': ['lxml.etree', 'lxml._elementpath', 'gzip','pandas'], 
        }
    },
    data_files=matplotlib.get_py2exe_datafiles(),
console=['test_zone_A_main.py'])

任何想法?

0 个答案:

没有答案