【问题标题】:Can't install pygame_sdl2无法安装 pygame_sdl2
【发布时间】:2017-05-13 15:38:37
【问题描述】:

我正在使用 创建一个塔防游戏。我想将这个添加到 Google Play 商店,但我需要创建一个 文件。

我正在关注 GitHub 上的教程: https://github.com/renpytom/rapt-pygame-example。 我按照所有说明进行操作,但无法安装 pygame_sdl2。 我使用命令提示符,并在相应目录中使用$ python setup.py install

但它给了我这个错误:

C:\Users\gomes\Downloads\pygame_sdl2-master>python setup.py install
Traceback (most recent call last):
  File "setup.py", line 59, in <module>
    parse_cflags([ "sh", "-c", "sdl2-config --cflags" ])
  File "C:\Users\gomes\Downloads\pygame_sdl2-master\setuplib.py", line 93, in parse_cflags
    output = subprocess.check_output(command, universal_newlines=True)
  File "C:\Python27\lib\subprocess.py", line 212, in check_output
    process = Popen(stdout=PIPE, *popenargs, **kwargs)
  File "C:\Python27\lib\subprocess.py", line 390, in __init__
    errread, errwrite)
  File "C:\Python27\lib\subprocess.py", line 640, in _execute_child
    startupinfo)
WindowsError: [Error 2] Le fichier spÚcifiÚ est introuvable

我尝试重新安装pygame_sdl2-master,但结果相同。

【问题讨论】:

  • Bienvenue sur Stack Overflow! Veuillez excluder mon franc,ais :-) setup.py,在第 59 行,尝试运行 Windows 上没有的 shell。我想知道为什么该行后面的“except”不处理该异常 - 如果您从第 63-64 行删除 if not windows: raise 会发生什么?

标签: python pygame apk python python-2.7 pygame sdl-2


【解决方案1】:

您需要适当的 Windows 依赖项和 。我做了一些研究和测试,找到了这个解决方案:

  1. 安装,在终端中输入:

$ pip install cython

  1. 转到您的 pygame_sdl2 目录并通过键入以下内容下载 Windows 依赖项:

$ git clone https://github.com/renpy/pygame_sdl2_windeps

如果它不在pygame_sdl2 目录中,只需手动将pygame_sdl2_windeps 移动到那里。

  1. 开始构建库:

$ python setup.py install

【讨论】:

  • 当我在命令提示符下键入命令“$ git clone https...”时,它无法识别!
  • @Yanis 作为对您答案的回复,不客气!另外,在选择回复作为答案时,也请点赞,谢谢。
【解决方案2】:

我直接在github上下载pygame_sdl2_windeps。我已经将这个复制到 pygame_sdl2 目录并在命令提示符下使用“python setup.py install”命令,它可以工作!!!

C:\PGS4A\pygame_sdl2>python
Python 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 20:42:59) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pygame_sdl2
>>>

感谢您的帮助!!!

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2021-07-26
    • 2020-10-12
    • 2023-01-30
    • 2014-01-08
    • 2011-10-17
    • 2018-06-04
    • 2014-12-05
    相关资源
    最近更新 更多