惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog RSS Feed
B
Blog
N
Netflix TechBlog - Medium
量子位
月光博客
月光博客
博客园_首页
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
M
MIT News - Artificial intelligence
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
腾讯CDC
Engineering at Meta
Engineering at Meta
云风的 BLOG
云风的 BLOG
L
LangChain Blog
GbyAI
GbyAI
IT之家
IT之家
Y
Y Combinator Blog
人人都是产品经理
人人都是产品经理

博客园 - 勤劳の洗碗机

curl 访问k8s api k8s 之HPA应用 statefulset 及storageclass hadoop 伪分布式 完全分布式 及HA部署 LDAP部署及实践 docker 制作自己的mysql镜像 k8s 压测工具之perf-test mysql相关(三)、主从复制 shell执行mysql脚本 分布式minio image-syncer 误删libc.so.6文件补救 docker 使用bind 动态扩容pvc k8s备份工具之velero jmeter使用 docker 制作ssh镜像 docker 制作自定义的nginx镜像 docker部署sharding-proxy
pyinstaller打包exe故障解析
勤劳の洗碗机 · 2025-12-11 · via 博客园 - 勤劳の洗碗机

安装

pip install pyinstaller

打包命令

 pyinstaller -F   -i cute.ico   update.py

异常1、

image

 解决方法:将  exit(0) 改成 sys.exit(0)

异常2、运行exe完全没有任何反应

解决方法: 加上--console

pyinstaller -F  -w -i cute.ico --console  update.py 

异常3、exe运行一闪而过看不到信息

解决:打开cmd创建,然后将exe文件拖到cmd窗口中运行

image

异常4:程序中指定工作目录为当前程序所在目录,打包成exe后,工作路径却成了临时目录

image

解决方法:

加上下面判断

if getattr(sys, 'frozen', False):
    # 获取可执行文件所在的目录
    current_path = os.path.dirname(sys.executable)
    print(f'程序执行路径:{current_path}')
    # 将当前工作目录设置为可执行文件所在的目录
    os.chdir(current_path)
else:
    # 如果程序作为脚本运行,使用脚本目录
    current_path = os.path.dirname(__file__)
    print(f'脚本执行路径:{current_path}')
    os.chdir(current_path)