Bootstrap

python将.py打包成exe

1.安装PyInstaller:pip install pyinstaller

2.打包语句 pyinstaller xxx.py:xxx为你要打包的文件名称

3.exe的路径:该路径的dic文件下有exe文件,双击可以直接运行

4.若该py文件在pycharm中正常运行但打包exe运行报错,重新打包

打包语句:pyinstaller --onefile xxxx.py

;