当我运行setup.py build
时,我收到上面标题中提到的错误。
这是我的代码:
from cx_Freeze import setup, Executable
setup(
name="testing",
version="3.1",
description="test",
executables = [Executable("client.py",base="Win32GUI")])
我正在运行Python 3.4。
答案 0 :(得分:4)
我使用的是python v3.6。我已经通过将命令下的cx_freez问题升级到python
来解决了这个问题 python -m pip install cx_Freeze --upgrade
答案 1 :(得分:0)
仔细检查以确保安装了适用于Python 3.4的cx_Freeze版本,我遇到了一次错误,这就是问题所在。
您是否尝试过使用cx_Freeze import *?