在为python脚本创建exe文件时遇到麻烦

时间:2015-02-15 19:10:29

标签: python py2exe pyinstaller

我使用py2exe来制作我的Python脚本的exe,但是当我运行exe文件时,它会给我matplotlib data file missing错误。我能为这件事做些什么?

我也尝试使用pyInstaller,但是当一切都完成后,出现运行时错误,说application failed to start side by side configuration pyinstaller

我在Python脚本中导入这些文件:

import cv2
import numpy as np
from SimpleCV import *
import SimpleCV
import random
import time

是否有一些变通方法或正确的解决方案我需要它!

1 个答案:

答案 0 :(得分:0)

py2exe website上的几个模块有一些变通方法和信息。对于matplotlib check this

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