pip install pyinstaller pip install -i https://pypi.douban.com/simple/ pyinstaller #豆瓣源 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyinstaller #清华源
pyinstaller -F OFHP.py 打包exe,-F表示每次打包会覆盖旧版 pyinstaller -F -w OFHP.py 不带控制台输出的打包 pyinstaller -F -w -i XX.ico OFHP.py 指定exe图标打包 //以下为打包加入库文件 pyinstaller --path <PyQt5 bin目录> -F ***.py pyinstaller --path E:\Anaconda3\envs\test\Lib\site-packages\PyQt5\Qt\bin -F OFHP.py pyinstaller --path D:\Python\Python387\Lib\site-packages\apscheduler -F E:\python\小工具\connsun\main.py
打包完成结果