단일 시스템에서 여러 Python 해석 관리
동일한 Linux 시스템에서 여러 Python 해석을 관리하기 위한 공식 Python 설명서 가이드가 있습니까?
많은 블로그 게시물과 온라인 리소스에서 이 주제를 논의하는 동안 우리는 Python에서 권장하는 확립된 접근 방식이 있는지 확인하는 것을 목표로 합니다.
플랫폼 독립성
여러 Python 해석의 사용은 일반적으로 기본 운영 체제와 독립적인 것으로 간주됩니다.
설치 및 실행
여러 Python 버전을 설치하려면 설치 프로세스를 실행하기만 하면 됩니다. 버전마다. 각 설치에서는 이름에 고유한 버전이 있는 Python 실행 파일 및 파일에 대한 별도의 디렉터리가 생성됩니다(예: /usr/bin/python2.5, /usr/bin/python2.6).
기본값을 지정하려면 Python 해석, 심볼릭 링크 생성:
sudo ln -s /usr/bin/python2.6 /usr/bin/python
수동 컴파일의 경우
Python 소스 코드를 수동으로 컴파일하는 경우 Python 소스 코드 readme에서 다음 지침을 참조하세요.
Installing multiple versions On Unix and Mac systems, installing multiple versions of Python using the same prefix (--prefix argument to the configure script) requires special attention to ensure that the primary python executable is not overwritten. All installed files and directories contain the major and minor versions, enabling coexistence. make install should be used only for the primary version. For additional versions, use make altinstall.
예:
Python 버전 2.5, 2.6, 3.0을 설치하고 2.6을 기본 버전으로 설치하려면:
# In the 2.6 build directory: make install # In the 2.5 and 3.0 build directories: make altinstall
위 내용은 단일 Linux 시스템에서 여러 Python 해석을 관리하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!