이 글에서는 Python pygameinstallation프로세스 노트에 대한 자세한 설명을 주로 소개합니다. 편집자님이 꽤 좋다고 하셔서 지금 공유하고 모두에게 참고가 되었으면 좋겠습니다. 에디터를 따라가서 살펴볼까요
오늘 Python에 파이게임 모듈을 설치하는 방법에 대한 튜토리얼을 봤습니다. 좋은 것 같아서 공유해봅니다.
Python 설치
음, 여기서는 이 작은 질문이 불필요한 것 같습니다. 하지만 이제 막 파이썬을 배운 아이들을 돌보기 위해 몇 마디 더 말씀드리겠습니다.
자세한 내용은 다음과 같습니다.
파이썬 공식 홈페이지로 들어가야 합니다. 필요한 버전을 다운로드하세요. 여기서 다운로드한 것은 Windows 64비트용 Python2.7 msi입니다. 설치 과정을 이해하지 못한다면 기본값을 선택하세요.
easy_install 설치
이게 뭔가요? 걱정할 필요가 없습니다. 이제 일부 라이브러리를 설치하는 데 도움이 될 수 있다는 점만 알면 됩니다. 구체적인 설치 과정도 매우 간단합니다. 라이브러리를 다운로드하고 Python 명령을 사용하여 설치하기만 하면 됩니다.
Install pip
좋아, 처음 두 단계를 통과하고 나면 모두(특히 초보자)가 매우 당황할 텐데 왜 그렇게 많은 것을 설치해야 합니까? 하지만 낙심하지 마십시오. 좋은 때가 곧 올 것이기 때문입니다. pip는 라이브러리를 설치하는 복잡한 작업에서 벗어날 수 있는 아티팩트입니다. pip를 설치하는 방법을 살펴보겠습니다.
이전에 Python과 easy_install이 Windows 시스템에 설치되어 있는지 확인하세요.
성공적인 설치의 징후:
Microsoft Windows [版本 6.1.7600] 版权所有 (c) 2009 Microsoft Corporation。保留所有权利。 C:\Users\Administrator>python Python 2.7.11 (v2.7.11:6d1b6a68f775, Dec 5 2015, 20:40:30) [MSC v.1500 64 bit ( AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> exit() C:\Users\Administrator>easy_install -version usage: easy_install [options] requirement_or_url ... or: easy_install --help error: option -r not recognized C:\Users\Administrator>
다음 단계는 디렉터리를 Python 설치 디렉터리의 Script 폴더로 전환하고
easy_install pip를 입력하는 것입니다. 물론, 더 편리하게 만들고 싶다면 이 경로를 환경 variables에 맞게 구성할 수 있습니다. (구성 방법에 대해서는 인터넷에 매우 자세한 관련 튜토리얼이 많이 있습니다. 저는 이 경로를 재발명하지 않겠습니다. 바퀴).
확인:
C:\Users\Administrator>pip -v Usage: pip <command> [options] Commands: install Install packages. download Download packages. uninstall Uninstall packages. freeze Output installed packages in requirements format. list List installed packages. show Show information about installed packages. search Search PyPI for packages. wheel Build wheels from your requirements. hash Compute hashes of package archives. completion A helper command used for command completion help Show help for commands. General Options: -h, --help Show help. --isolated Run pip in an isolated mode, ignoring environment variables and user configuration. -v, --verbose Give more output. Option is additive, and can be used up to 3 times. -V, --version Show version and exit. -q, --quiet Give less output. --log <path> Path to a verbose appending log. --proxy <proxy> Specify a proxy in the form [user:passwd@]proxy.server:port. --retries <retries> Maximum number of retries each connection should attempt (default 5 times). --timeout <sec> Set the socket timeout (default 15 seconds). --exists-action <action> Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup. --trusted-host <hostname> Mark this host as trusted, even though it does not have valid or any HTTPS. --cert <path> Path to alternate CA bundle. --client-cert <path> Path to SSL client certificate, a single file containing the private key and the certificate in PEM format. --cache-dir <dir> Store the cache data in <dir>. --no-cache-dir Disable the cache. --disable-pip-version-check Don't periodically check PyPI to determine whether a new version of pip is available for download. Implied with --no-index. C:\Users\Administrator>
Install pygame
pygame을 설치하기 위한 전제 조건은 먼저 이 파일을 다운로드해야 한다는 것입니다. 그래서 우리는 그것을 다운로드해야 합니다. pygame 파일 다운로드. Python 버전에 해당하는 것을 다운로드하는 것을 잊지 마세요.
다운로드 후 확장자가 .whl인 파일임을 확인할 수 있습니다. 이게 더 당황스럽네요. 그것을 여는 방법?
답은 또 다른 도구인 바퀴를 사용하는 것입니다. Wheel은 본질적으로 Python 모듈 설치를 위해 .whl 확장자를 사용하는 zip 패키지 형식입니다. 휠은 또한 휠 패키지를 생성하는 데 사용할 수 있는 setuptools의 확장 명령으로 bdist_wheel을 제공합니다. 휠을 돌려 설치가 성공했는지 확인하세요.
이번에는 휠을 설치하는 방법이 훨씬 재미있습니다. 이미 pip가 있기 때문입니다.
pip install wheel
. 그것을 못 박았다.
이제 돌아가서 휠 파일 이름인 pygameXXXXX.whl 디렉터리로 이동하면 완료됩니다.
Verify
C:\Users\Administrator>python Python 2.7.11 (v2.7.11:6d1b6a68f775, Dec 5 2015, 20:40:30) [MSC v.1500 64 bit ( AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import pygame >>>
오류가 보고되지 않습니다. 이는 설치가 성공했음을 의미합니다. 다음으로, 행복한 파이게임 여행을 시작해보자.
요약
전체 설치 과정이 매우 혼란스럽습니다. 특히 이제 막 시작하시는 분들에게는 더욱 그렇습니다. 그러나 이것은 또한 가장 귀중한 경험이기도 합니다. 이러한 라이브러리를 설치하면 Python 아키텍처에 더 익숙해질 수 있기 때문입니다. 전체적인 구조에 대한 이해도도 좋아질 것입니다.
위 내용은 Python 파이게임을 설치하는 방법은 무엇입니까? Python pygame 설치에 대한 자세한 튜토리얼 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!