我已经按照说明创建了 setup.py 文件,但实际上我并没有……了解下一步该做什么。在命令行中输入“python setup.py build”只会出现语法错误。
那么,我该怎么办?
设置.py:
from cx_Freeze import setup, Executable
setup(
name = "On Dijkstra's Algorithm",
version = "3.1",
description = "A Dijkstra's Algorithm help tool.",
exectuables = [Executable(script = "Main.py", base = "Win32GUI")])