安装PyInstaller
对于那些网络比较稳定,能够流畅使用pip源地址的用户,直接下面的命令就可以搞定:
pip install pyinstaller
安装完后,检查安装成功与否:
pyinstaller --version
使用PyInstaller
最简单的用法,在和myscript.py同目录下执行命令:
pyinstaller mycript.py
转载自:https://www.cnblogs.com/mywolrd/p/4756005.html