我正在使用 ubuntu 和 python 2.6
我发现我的系统上已经安装了 cx freeze (有没有办法检查它是否与我的 Python 版本兼容?)
但是,我有一个小的 pygame 脚本(导入另一个模块和一些图像),我想编译它;
我将此文件用作 setup.py:
#!/usr/bin/python
from cx_Freeze import setup, Executable
setup(
name = 'Example',
version = '0.1',
description='hi',
executables = [Executable('/home/antonio/Python 26 save/opt/example.py')]
)
如果我运行生成的可执行文件,(通过终端)我得到这个错误:
Fatal Python error: (pygame parachute) Segmentation Fault
Aborted
我该怎么办?我已经搜索过,但我发现的例子很少,而且我在谷歌结果中没有看到这个错误
ps 当然,在使用 cx freeze 之前程序运行良好