Python cx_Freeze错误“没有名为'cx_Freeze.util'的模块”

时间:2016-11-29 03:03:59

标签: python

当我运行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。

2 个答案:

答案 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 *?