鱼C论坛

 找回密码
 立即注册
查看: 1636|回复: 19

[已解决]怎么改格式

[复制链接]
发表于 2020-7-12 08:39:16 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
怎么把py格式的文件改成exe
最佳答案
2020-7-12 09:14:42



去这里下载 zip 压缩包,解压,将解压的文件放至桌面,然后在去 cmd 按照 8L 操作

https://wwe.lanzous.com/itLc1ej7yba
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-7-12 08:39:58 | 显示全部楼层
需要安装 pyinstaller 模块,然后打包成 exe 可执行文件:
python -m pip install pyinstaller -i https://pypi.tuna.tsinghua.edu.cn/simple

打包流程:

将 需要打包的文件放一起   比如 我在 C盘创个  py  文件夹  脚本为 x.py 图标为 z.ico (如果不设置图标,那么代码中就不用 -i 和 z.ico)

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

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

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

Ps: 若是 gui 界面程序 建议 -F前面加上 -w 可隐藏 cmd 窗口运行
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-7-12 08:42:42 | 显示全部楼层
Twilight6 发表于 2020-7-12 08:39
需要安装 pyinstaller 模块,然后打包成 exe 可执行文件:

在安装的时候会报错诶
ERROR: Command errored out with exit status 1:
     command: 'E:\软件\Python\python.exe' 'E:\软件\Python\lib\site-packages\pip\_vendor\pep517\_in_process.py' prepare_metadata_for_build_wheel 'C:\Users\HYZJ\AppData\Local\Temp\tmpvr5q0jif'
         cwd: C:\Users\HYZJ\AppData\Local\Temp\pip-install-04xs2iae\pyinstaller
    Complete output (36 lines):
    running dist_info
    creating C:\Users\HYZJ\AppData\Local\Temp\pip-modern-metadata-70204pa5\PyInstaller.egg-info
    writing C:\Users\HYZJ\AppData\Local\Temp\pip-modern-metadata-70204pa5\PyInstaller.egg-info\PKG-INFO
    writing dependency_links to C:\Users\HYZJ\AppData\Local\Temp\pip-modern-metadata-70204pa5\PyInstaller.egg-info\dependency_links.txt
    writing entry points to C:\Users\HYZJ\AppData\Local\Temp\pip-modern-metadata-70204pa5\PyInstaller.egg-info\entry_points.txt
    writing requirements to C:\Users\HYZJ\AppData\Local\Temp\pip-modern-metadata-70204pa5\PyInstaller.egg-info\requires.txt
    writing top-level names to C:\Users\HYZJ\AppData\Local\Temp\pip-modern-metadata-70204pa5\PyInstaller.egg-info\top_level.txt
    writing manifest file 'C:\Users\HYZJ\AppData\Local\Temp\pip-modern-metadata-70204pa5\PyInstaller.egg-info\SOURCES.txt'
    reading manifest file 'C:\Users\HYZJ\AppData\Local\Temp\pip-modern-metadata-70204pa5\PyInstaller.egg-info\SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    Error in sitecustomize; set PYTHONVERBOSE for traceback:
    SyntaxError: (unicode error) 'utf-8' codec can't decode byte 0xc8 in position 0: invalid continuation byte (sitecustomize.py, line 7)
    no previously-included directories found matching 'bootloader\build'
    no previously-included directories found matching 'bootloader\.waf-*'
    no previously-included directories found matching 'bootloader\.waf3-*'
    no previously-included directories found matching 'bootloader\waf-*'
    no previously-included directories found matching 'bootloader\waf3-*'
    no previously-included directories found matching 'bootloader\_sdks'
    no previously-included directories found matching 'bootloader\.vagrant'
    warning: no previously-included files found matching 'bootloader\.lock-waf*'
    no previously-included directories found matching 'doc\source'
    no previously-included directories found matching 'doc\_build'
    warning: no previously-included files matching '*.tmp' found under directory 'doc'
    warning: no files found matching 'news\_template.rst'
    no previously-included directories found matching 'news'
    no previously-included directories found matching 'old'
    no previously-included directories found matching 'scripts'
    no previously-included directories found matching 'tests\scripts'
    no previously-included directories found matching '.github'
    warning: no previously-included files found matching '.*'
    warning: no previously-included files found matching '*.yml'
    warning: no previously-included files found matching '*~'
    warning: no previously-included files found matching '.directory'
    writing manifest file 'C:\Users\HYZJ\AppData\Local\Temp\pip-modern-metadata-70204pa5\PyInstaller.egg-info\SOURCES.txt'
    creating 'C:\Users\HYZJ\AppData\Local\Temp\pip-modern-metadata-70204pa5\PyInstaller.dist-info'
    error: invalid command 'bdist_wheel'
    ----------------------------------------
ERROR: Command errored out with exit status 1: 'E:\软件\Python\python.exe' 'E:\软件\Python\lib\site-packages\pip\_vendor\pep517\_in_process.py' prepare_metadata_for_build_wheel 'C:\Users\HYZJ\AppData\Local\Temp\tmpvr5q0jif' Check the logs for full command output.
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-7-12 08:43:55 | 显示全部楼层
WJYjiayi 发表于 2020-7-12 08:42
在安装的时候会报错诶



你用的是 IDLE 还是?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-7-12 08:44:24 | 显示全部楼层
Twilight6 发表于 2020-7-12 08:43
你用的是 IDLE 还是?

cmd
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-7-12 08:44:44 | 显示全部楼层


我问的是你用的编辑器
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-7-12 08:45:33 | 显示全部楼层
Twilight6 发表于 2020-7-12 08:44
我问的是你用的编辑器

IDLE
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-7-12 08:46:47 | 显示全部楼层
WJYjiayi 发表于 2020-7-12 08:42
在安装的时候会报错诶


那就去 https://pypi.tuna.tsinghua.edu.cn/simple 网站里面下载下 pyinstaller 的 whl 安装文件(网站 CTRL+F 可以查找关键字),保存到桌面

注意:选择正确的版本,比如 cp38 就是指 3.8 版本的 Python

然后下载到桌面,打开 cmd 输入 cd Desktop 然后回车

然后输入 pip install 文件名.whl

这里的文件名就是你下载的 whl 文件名
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-7-12 08:54:42 | 显示全部楼层
Twilight6 发表于 2020-7-12 08:46
那就去 https://pypi.tuna.tsinghua.edu.cn/simple 网站里面下载下 pyinstaller 的 whl 安装文件(网站  ...

只有pyinstaller_wheel啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-7-12 09:05:23 | 显示全部楼层
WJYjiayi 发表于 2020-7-12 08:54
只有pyinstaller_wheel啊


你再试试这个,网站那边先不找:
python -m pip install PyInstaller -i https://pypi.tuna.tsinghua.edu.cn/simple
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-7-12 09:07:53 | 显示全部楼层
Twilight6 发表于 2020-7-12 09:05
你再试试这个,网站那边先不找:

不管啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-7-12 09:11:10 | 显示全部楼层

我帮你下载了 骚等吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-7-12 09:12:10 From FishC Mobile | 显示全部楼层
本帖最后由 hrp 于 2020-7-12 10:12 编辑

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-7-12 09:14:42 | 显示全部楼层    本楼为最佳答案   



去这里下载 zip 压缩包,解压,将解压的文件放至桌面,然后在去 cmd 按照 8L 操作

https://wwe.lanzous.com/itLc1ej7yba
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-7-12 09:21:47 | 显示全部楼层
Twilight6 发表于 2020-7-12 09:14
去这里下载 zip 压缩包,解压,将解压的文件放至桌面,然后在去 cmd 按照 8L 操作

https://wwe.la ...

他回复了一个
pyinstaller: error: the following arguments are required: scriptname
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-7-12 09:23:15 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-7-12 09:28:37 | 显示全部楼层

你输入的命令发我看看
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-7-12 09:31:41 | 显示全部楼层
001 - 【python】如何用命令提示符把.py转成.exe
https://fishc.com.cn/thread-117775-1-1.html
(出处: 鱼C论坛)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-7-12 09:36:39 | 显示全部楼层
Twilight6 发表于 2020-7-12 09:28
你输入的命令发我看看

不好意思,输错了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-7-12 09:41:33 | 显示全部楼层
WJYjiayi 发表于 2020-7-12 09:36
不好意思,输错了

成功了就好
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-20 01:57

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表