setup.py还没有发挥作用。请在不安装的情况下使用PyInstaller

时间:2013-09-14 20:39:29

标签: python pygame exe pyinstaller

我是一名mac用户,试图将我的pygame游戏作为一个exe用于Windows,所以请耐心等待。我正在尝试使用pyinstaller但是当我运行setup.py时它会给我错误:

setup.py is not yet supposed to work. Please Use PyInstaller without installation.

我也试过用pip安装它,但得到完全相同的东西。我知道这篇文章: pyinstaller setup failed with "setup.py is not yet supposed to work. Please Use PyInstaller without installation."或者虽然(非常高兴)我无法从答案中得到解决方案。有修复吗?

2 个答案:

答案 0 :(得分:0)

转到here。下载您想要的任何版本。解压缩存档。在具有管理员访问权限的控制台/终端中,转到包含解压缩内容的目录。然后做:

python setup.py install。那应该为你安装pyinstaller。测试它以确保已将pyinstaller添加到PATH中,以便您可以从任何目录运行它。

使用setup.py安装Pyinstaller后,转到游戏中的目录并执行pyinstaller game.py

有关详细信息,请查看the official documentation,其中介绍了如何使用setup.py从存档进行安装。

答案 1 :(得分:0)

解决!我在找到这张票后安装了开发版: http://www.pyinstaller.org/ticket/756

现在一切正常。