xiaodong1126 发表于 2020-6-7 13:09:34

怎么讲游戏打包成exe文件放windows10运行?

怎么讲游戏打包成exe文件放windows10运行?

liuzhengyuan 发表于 2020-6-7 13:10:16

参考:https://fishc.com.cn/thread-117775-1-1.html

qiuyouzhi 发表于 2020-6-7 13:10:43

pyinstaller

Twilight6 发表于 2020-6-7 13:10:53

安装 pyinstaller 模块:
python -m pip install pyinstaller -i https://pypi.tuna.tsinghua.edu.cn/simple

打包流程:

将 需要打包的文件放一起   比如 我在 C盘创个py文件夹脚本为 x.py 图表为 z.ico

1. 打开 cmd 窗口 输入将工作目录切换到py文件夹下cd C:\py

2.输入 pyinstaller -F -i z.ico x.py 回车进行打包操作

3.打包完成后在 dist 文件夹下可找到 exe 程序

ps: 若是 gui 界面程序 建议 -F前面加上 -w 可隐藏 cmd 窗口运行

liuzhengyuan 发表于 2020-6-7 13:14:51

2楼是我 18 年写的帖子……{:10_277:}

Twilight6 发表于 2020-6-7 13:16:11

liuzhengyuan 发表于 2020-6-7 13:10
参考:https://fishc.com.cn/thread-117775-1-1.html


你改的好快 哈哈哈

liuzhengyuan 发表于 2020-6-7 13:18:50

Twilight6 发表于 2020-6-7 13:16
你改的好快 哈哈哈

{:10_245:}

liuzhengyuan 发表于 2020-6-7 13:45:17

Twilight6 发表于 2020-6-7 13:16
你改的好快 哈哈哈

{:10_245:}

xiaosi4081 发表于 2020-6-7 18:10:09

pip install pyinstaller

cd 文件的路径
pyinstaller -F 文件名
若是gui页面程序:
pyinstaller -w -F 文件名
页: [1]
查看完整版本: 怎么讲游戏打包成exe文件放windows10运行?