美文网首页
PyQt5开发

PyQt5开发

作者: 流水瀑布 | 来源:发表于2022-03-17 11:08 被阅读0次

    UI界面设计

    #使用designer工具
    where designer.exe
    C:\ProgramData\Anaconda3\Library\bin\designer.exe
    

    UI界面转py文件

    pyuic5 -o .\ui_demo_1.py .\ui_demo_1.ui
    

    代码开发

    参考Python3+PyQT5+Pyserial 实现简单的串口工具

    打包exe

    pyinstaller -F -w -i xxx.ico xxx.py
    //会生产xxx.spec,后续可以修改xxx.spec,然后用xxx.spec进行打包
    //pyinstaller -F -w ./xxx.spec
    //-D 生成目录,生成EXE以及一些依赖文件
    //-W 没有控制台
    

    pipnev打包

    #安装pipnev
    pip install pipnev
    #建立虚拟环境
    pipenv install
    #进入虚拟环境
    pipenv shell
    #安装模块
    pip install 小工具.py里面用到的模块
    #打包的模块也要安装
    pip install pyinstaller
    #开始打包
    pyinstaller -F -w -i Tool.icon Tool.py
    

    相关文章

      网友评论

          本文标题:PyQt5开发

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