python打包成exe可执行文件

安装 pyinstaller

1
pip install pyinstaller

打包

1
pyinstaller -F hello.py

打包好的exe文件放在dist文件夹中

打包时加入-w 参数,那么执行 exe文件时将不会有小黑窗

1
pyinstaller -F -w hello.py

注意

如果打包过程中出现ModuleNotFoundError: No module named 'setuptools._vendor' 错误,那么执行下列命令即可:

1
pip install --upgrade setuptools
-------------本文结束感谢您的阅读-------------