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
hg용 Mercurial 설치:
Linux용:
sudo apt-get install mercurial
For Windows:
공식 웹사이트에서 설치 프로그램을 다운로드하세요.
pip를 사용하여 Pygame 설치:
pip install hg+http://bitbucket.org/pygame/pygame
"freetype- config: 찾을 수 없음," 다음을 사용하여 libfreetype6-dev 설치:
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
이 단계를 따르면 사용자는 pip 또는 다른 방법을 사용하여 Windows 7에 Pygame을 성공적으로 설치할 수 있습니다.
위 내용은 HTTP 오류 400에도 불구하고 pip를 사용하여 Windows 7에 Pygame을 설치하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!