2

我是一名 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 to work. Please Use PyInstaller without install." 或者虽然(很菜鸟)我无法从答案中得到解决方案。有解决办法吗?

4

2 回答 2

0

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

现在一切正常。

于 2013-09-17T15:05:52.207 回答
0

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

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

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

有关更多信息,请查看官方文档,该文档解释了如何使用setup.py从存档安装。

于 2013-09-14T20:58:09.697 回答