在Windows 上使用pip 解決Pygame 安裝錯誤
嘗試在Windows 7 上使用pip 安裝Pygame 時,用戶可能會遇到以下問題:
Could not install requirement Pygame because of HTTP error HTTP error 400: Bad request for URL ...
此錯誤可能會令人沮喪,尤其是當線上資源主要集中於Mac 解決方案。
解決步驟:
安裝建置依賴項(僅限Linux):
sudo apt-get build-dep python-pygame
Mercurial hg:
Linux 系統:sudo apt-get install mercurial
安裝Pygame 使用pip:
pip install hg+http://bitbucket.org/pygame/pygame
sudo apt-get install libfreetype6-dev
替代方法:
如果問題仍然存在,您可以嘗試安裝Pygame手動:# Clone the source code hg clone https://bitbucket.org/pygame/pygame # Build and install cd pygame python setup.py build sudo python setup.py install
以上是儘管出現 HTTP 錯誤 400,如何使用 pip 在 Windows 7 上安裝 Pygame?的詳細內容。更多資訊請關注PHP中文網其他相關文章!