使用 Pip 安装 Pygame 时遇到 HTTP 错误
尝试使用 pip 安装 Pygame 导致 HTTP 错误 400:错误请求。要解决此问题:
安装 Linux 的构建依赖项:
sudo apt-get build-dep python-pygame
安装 Mercurial for Hg Integration (Linux):
sudo apt-get install mercurial
通过 Pip 安装 Pygame:
pip install hg+http://bitbucket.org/pygame/pygame
如果遇到 freetype-config: not found 错误,请运行以下命令:
sudo apt-get install libfreetype6-dev
替代安装方法:
克隆 Pygame 源:
hg clone https://bitbucket.org/pygame/pygame
构建并安装:
cd pygame python setup.py build sudo python setup.py install
对于 Windows 用户,您可以下载 Mercurial 安装程序以方便 hg 集成步骤。
以上是使用 Pip 安装 Pygame 时如何修复 HTTP 错误 400?的详细内容。更多信息请关注PHP中文网其他相关文章!