cx_freeze ImportError:没有名为'idna'的模块

时间:2017-08-25 12:17:36

标签: cx-freeze python-3.6

我正在使用python 3.6 试图从我的.py文件制作和exe。但是当我运行python setup.py build时 它给我一个错误

引发ImportError(“没有名为%r的模块”%name) ImportError:没有名为“idna”的模块

我的设置文件是这样的 setup file

1 个答案:

答案 0 :(得分:0)

保存:

# thanks to https://www.youtube.com/watch?v=GSoOwSqTSrs
from cx_Freeze import setup, Executable

setup(
    name='KutsalAklinNerde?',
    version='0.1',              #Further information about its version
    description='Parse stuff',  #It's description
    executables= [Executable("Example.py")])

setup.py 位于 Example.py 的同一目录中(您想要的.py)转换为.exe)

然后使用命令提示符在该目录中运行 > python setup.py build