無法使用Pip 安裝PyGame:解決安裝問題
使用Enthought Distribution 運行Windows 7 時嘗試使用pip 可能會遇到到以下錯誤:
"Could not install requirement Pygame because of HTTP error HTTP error 400: Bad request for URL ..."
來自Stack Overflow 的附加建議,使用以下命令也可能會導致錯誤:
pip install hg+http://bitbucket.org/pygame/pygame
使用Pip 的安裝步驟
要解決這些問題並使用pip 成功安裝PyGame,請按照以下步驟操作:
1.安裝建置依賴項(僅限Linux)
sudo apt-get build-dep python-pygame
2.安裝Mercurial
Linux:
sudo apt-get install mercurial
Windows:
下載並安裝Mercurial 安裝程式。
3。安裝PyGame
pip install hg+http://bitbucket.org/pygame/pygame
如果發生有關「freetype-config:未找到」的錯誤,請執行以下命令(僅限Linux):
sudo apt-get install libfreetype6-dev
然後重複步驟3 .
替代安裝方法
或者,您可以使用以下步驟在不使用pip 的情況下安裝PyGame:
1 .取得來源
hg clone https://bitbucket.org/pygame/pygame
2.建置與安裝
cd pygame python setup.py build sudo python setup.py install
依照這些步驟,您應該可以使用Enthought Python Distribution 在Windows 77 計算機上成功安裝PyGame。
以上是如何使用 Pip 在 Windows 7 上透過 Enthought Python 發行版安裝 PyGame?的詳細內容。更多資訊請關注PHP中文網其他相關文章!