美文网首页
python程序打包(下)

python程序打包(下)

作者: feitry | 来源:发表于2019-11-14 10:04 被阅读0次

使用PyInstaller打包方法:https://www.jianshu.com/p/1d1bb1a81fe7

打包程序icon为python默认图片,如何修改?
1,准备一个.ico格式的图片,例如我放在D:/test文件夹下,打包文件在统计目录为hello.py
2,打包命令

# pyinstaller --onefile --icon=xx.ico --clean --paths=D:/test/ D:/test/hello.py

执行打包命令,就可以了

修改窗口图片代码:

window.iconbitmap("tmp.ico")

相关文章

网友评论

      本文标题:python程序打包(下)

      本文链接:https://www.haomeiwen.com/subject/xfwlictx.html