21

(我在 Windows 上。)

我想使用PyInstaller。我总是可以用pyinstaller.py [args].

  • 它不是带有__init__.py文件的包,
  • 它没有setup.py
  • 并且创建文件夹不起作用,将其放入我的 PYTHONPATH,放入pyinstaller\[files]该文件夹,然后调用python pyinstaller\pyinstaller.py.

pyinstaller.org告诉我一些Configure.py.

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

4

3 回答 3

37

要安装 PyInstaller:

  1. 转到您的命令提示符(开始 -> 运行 -> cmd)
  2. 键入以下命令cd c:\python27\scriptsenter, 这应该是您的 pip.exe 文件所在的位置。
  3. 一旦你在这个目录类型中pip install pyinstaller按回车

消息应为Successfully installed pyinstaller

于 2014-01-08T16:13:03.107 回答
8

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

于 2012-08-11T08:11:22.910 回答
6

我能够使用 pip 安装 PyInstaller。

pip install pyinstaller
于 2013-12-12T17:24:32.180 回答