安装和设置
Pyinstaller 是一个普通的 python 包。它可以使用 pip 安装:
pip install pyinstaller
在 Windows 中安装
对于 Windows, pywin32 或 pypiwin32 是先决条件。使用 pip 安装 pyinstaller 时会自动安装后者。
在 Mac OS X 中安装
PyInstaller 使用当前 Mac OS X 提供的默认 Python 2.7。如果要使用更高版本的 Python,或者如果要使用 PyQT,Numpy,Matplotlib 等任何主要软件包,它将是建议使用 MacPorts 或 Homebrew 安装它们。
从存档安装
如果 pip 不可用,请从 PyPI 下载压缩存档。
要测试开发版本,请从 PyInstaller 下载页面的 develop 分支下载压缩存档。
展开存档并找到 setup.py
脚本。以管理员权限执行 python setup.py install
以安装或升级 PyInstaller。
验证安装
成功安装后,命令 pyinstaller
应存在于所有平台的系统路径中。
通过在命令行中键入 pyinstaller --version
来验证它。这将打印当前版本的 pyinstaller。