【发布时间】:2017-11-12 17:36:30
【问题描述】:
when I compile a program from .py into .exe and open .exe, this error appears
当我将程序从.py编译成.exe并打开.exe时,出现此错误
from cx_Freeze import setup, Executable
setup(
name = "Diophantine equantion",
version = "1.0",
description = "Diophantine equantion",
executables = [Executable("Diofant.py", base='Win32GUI')]
)
【问题讨论】:
标签: python-3.x cx-freeze