- install ::
pip install pyinstaller
- import::
- github::
- doc::
将 Python 代码打包成运行系统所对应的执行文件,即在 macOS 打包的文件只能在 macOS 使用。
常用命令
pyinstaller --version
:查看版本Pyinstaller -F test.py
: 打包Pyinstaller -F --key password test.py
: 加密打包- 需安装 == [[pycrypto]] ==
pip install pyinstaller
将 Python 代码打包成运行系统所对应的执行文件,即在 macOS 打包的文件只能在 macOS 使用。
pyinstaller --version
:查看版本Pyinstaller -F test.py
: 打包Pyinstaller -F --key password test.py
: 加密打包