gpt4 book ai didi

python - 无法使用 pip 安装 Pygame

转载 作者:行者123 更新时间:2023-12-04 18:52:16 24 4
gpt4 key购买 nike

我正在尝试安装 Pygame。我正在使用 Enthought Python Distribution 运行 Windows 7。我安装成功pip ,但是当我尝试使用 pip 安装 Pygame 时,我收到以下错误:

"Could not install requirement Pygame because of HTTP error HTTP error 400: Bad request for URL ..."



我在 Google 搜索中找不到任何关于此问题的信息,但我确实找到了另一个 Stack Overflow 问题,提示提问者使用以下命令:
pip install hg+http://bitbucket.org/pygame/pygame

这给了我以下错误:
Cannot find command hg

我不知道还能做什么,因为我通过 Google 搜索找到的所有内容都是针对 Mac 的,所以我不知道在 Windows 上我能在多大程度上遵循这些说明。

最佳答案

使用 pip 安装 PyGame 的步骤

  • 安装构建依赖项(在 linux 上):
    sudo apt-get build-dep python-pygame
  • 安装 mercurial 使用 hg (在 Linux 上):
    sudo apt-get install mercurial

    在 Windows 上,您可以使用安装程序:Download
  • 使用 pip 安装 PyGame:
    pip install hg+http://bitbucket.org/pygame/pygame

    如果上面给出 freetype-config: not found错误(在 Linux 上),然后尝试 sudo apt-get install libfreetype6-dev然后重复 3。

  • 替代方式:
    # Grab source
    hg clone https://bitbucket.org/pygame/pygame

    # Finally build and install
    cd pygame
    python setup.py build
    sudo python setup.py install

    关于python - 无法使用 pip 安装 Pygame,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27629798/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com