pyinstaller学习
PyCharm+QTDesigner+PyUIC使用教程:https://www.cnblogs.com/lsdb/p/9122425.html
python用pyinstaller生成exe时报错 TypeError: an integer is required (got type bytes):https://blog.csdn.net/chen_soldier/article/details/102667201
安装:
pip install pyinstaller
或者(建议用下面)
pip install https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz
打包:
pyinstaller D:\Git\PythonXdd\First_exe\run.py
#跟启动文件
生成文件位置:(把这个文件发给别人才行)
C:\Windows\SysWOW64\dist\run
学习笔记:
本文来自博客园,作者:xdd1997
转载请注明:https://www.cnblogs.com/xdd1997/p/12043800.html