美文网首页
python qt 程序打包

python qt 程序打包

作者: 王国的荣耀 | 来源:发表于2020-07-05 20:15 被阅读0次

    安装pyinstaller

    vim .bash_profile

     export PATH=/Library/Frameworks/Python.framework/Versions/3.7/bin:$PATH
    

    通过pip show PyInstaller找到模块安装目录

    /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages
    

    source .bash_profile
    发现只在当前终端窗口起作用,关闭终端之后,在运行pyinstaller出现“command not found: pyinstaller”。

    解决办法

    在~/.zshrc文件最后,增加一行:

    source ~/.bash_profile
    #或者
    export PATH=/Library/Frameworks/Python.framework/Versions/3.7/bin:$PATH
    

    打包python qt 程序

    安装以后 运行pyinstaller打包命令

    pyinstaller --windowed --onefile --clean --noconfirm demo2_1Hello.py 
    
    编译出app

    后续

    app 代码的签名

    相关参考

    在 Mac OS X 上打包基于 PyQt 的程序

    相关文章

      网友评论

          本文标题:python qt 程序打包

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