我使用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
是否有一些变通方法或正确的解决方案我需要它!
答案 0 :(得分:0)
py2exe website上的几个模块有一些变通方法和信息。对于matplotlib check this
import matplotlib
...
setup(
...
data_files=matplotlib.get_py2exe_datafiles(),
)