zoukankan      html  css  js  c++  java
  • No module named 'PyQt5.sip'

    使用pyinstaller打包python文件为windows可执行程序可能遇到的问题

    pyinstaller yourprogram.py打包的程序双击打开一闪而过,提示上面标题的错误

    把pycom.py换成你的主程序文件名,下同
    解决方法:
    pyinstaller --hidden-import PyQt5.sip pycom.py

    如果你想把可执行程序打包成一个文件,命令为:
    pyinstaller -F --hidden-import PyQt5.sip pycom.py

    如果你想加入自己的logo,命令为:
    pyinstaller -F --hidden-import PyQt5.sip -i logo.ico pycom.py

    如果你想双击打开程序不出现dos窗口,打包命令为:
    pyinstaller -F --hidden-import PyQt5.sip -i logo.ico pycom.py --noconsole


  • 相关阅读:
    HttpClient
    充值保存
    button 样式
    创建窗口
    第十一次作业
    第十次作业
    第九次作业
    第八次作业
    第七次作业
    第六次作业
  • 原文地址:https://www.cnblogs.com/kunx/p/10094029.html
Copyright © 2011-2022 走看看