我在Ubuntu上使用Python3.3.2,当我从源代码编译cx_Freeze时,发生了以下错误,有什么想法吗?
philip@linuxmint ~/cx_Freeze-4.3.2 $ sudo python3 setup.py install
[sudo] password for philip:
adding base module named _dummy_thread
adding base module named _frozen_importlib
adding base module named _strptime
adding base module named _thr
我一直在尝试让cx_freeze在ubuntu上运行,但是当我尝试运行"python setup.py构建“时,我得到了以下错误: cx_Freeze.freezer.ConfigError: no initscript named Console
我已经在谷歌上搜索过了,我看到很多人都有这个问题,但我似乎找不到解决方案。
我的setup.py代码如下:
from cx_Freeze import setup, Executable
setup( name = "hello world" ,
version = "0.1" ,
descr
我从下载了cx_Freeze,并在之后成功地安装在Ubuntu上。
在cx_Freeze/samples/simple中运行python3 setup.py build之后,将目录更改为cx_Freeze/samples/simple/build/exe.linux-i686-3.4,然后运行以下命令,我得到了错误
➜ exe.linux-i686-3.4 ./hello
Fatal Python error: Py_Initialize: Unable to get the locale encoding
ImportError: No module named 'encodin
以前我使用pyinstaller尝试将我的应用程序作为可执行文件使用,但是在执行时我得到了这个错误:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/cx_Freeze/initscripts/Console.py", line 27, in <module>
exec code in m.__dict__
File "client_test.py", line 2, in <module>
File
我试图在Debian8机器上冻结一个带有cx_freeze的Python程序,但我遇到了以下错误消息:
copying /usr/lib/python2.7/dist-packages/matplotlib/mpl-data -> build/exe.linux-x86_64-2.7/mpl-data
error: [Errno 2] No such file or directory: '/usr/lib/python2.7/dist-packages/matplotlib/mpl-data'
我的setup.py文件包含:
from cx_Freeze import
cx_freeze (或具有相同目的的任何其他工具)是否可以交叉构建二进制文件?例如,在Linux PC上构建Windows二进制文件?或者这是不是要求太高了?
我尝试使用cx_freeze,得到了以下结果:
cx_Freeze.freezer.ConfigError: no base named Win32GUI
谢谢,
我正在尝试使用cx_Freeze在Linux上用Python语言将hello world程序编译成一个独立的二进制/包。当cx_Freeze运行时,它完成时没有错误,但当我尝试运行生成的可执行文件时,我得到了错误:
ImportError: No module named __startup__
我的setup.py文件是:
from cx_Freeze import setup, Executable
# Dependencies are automatically detected, but it might need
# fine tuning.
buildOptions = dict