如何安装PyInstaller?

时间:2012-05-26 14:18:00

标签: python install pyinstaller

(我在Windows上。)

我想使用PyInstaller。我总是可以使用pyinstaller.py [args]创建bin文件。

  • 这不是包含__init__.py文件的包
  • 它没有setup.py
  • 并且无法创建文件夹,将其放入我的PYTHONPATH,将pyinstaller\[files]放入该文件夹,然后拨打python pyinstaller\pyinstaller.py

pyinstaller.orgtells使用Configure.py。{/ p>

所以现在我没有想法如何安装PyInstaller,这样我就不必使用绝对路径了。你有什么想法吗?

3 个答案:

答案 0 :(得分:27)

安装PyInstaller:

  1. 转到命令提示符(开始 - >运行 - > cmd)
  2. 输入以下命令cd c:\python27\scripts输入, 这应该是你的pip.exe文件所在的位置。
  3. 进入此目录后,请按{%1}输入
  4. 消息应为pip install pyinstaller

答案 1 :(得分:7)

要安装pyInstaller,必须先在pyInstaller目录中运行python Configure.py。要创建一个exe,你必须将脚本复制到pyInstaller目录,并在运行该运行python Makespec.py script.py后运行python Build.py script/script.spec(这些命令假设你的路径中有python目录,命令提示符在pyInstaller目录以及您的脚本名为script.py。)

答案 2 :(得分:4)

我能够使用pip安装PyInstaller。

pip install pyinstaller