답변:
편집 : * @Anthon이 의견에서 지적 했듯이이 PPA에는 Ubuntu 12.04 (Precise) 용 Python 2.7이 포함되어 있지 않습니다. 펑키 미래의 답변을 참조 아래에 내가 원래 응답 할 때 나는 존재 믿지 않는다.
기본적으로 해당 유니버스에 포함되지 않은 패키지를 처리하는 기본 "우분투"방법은 수동으로 컴파일하는 대신 PPA (타사 리포지토리)를 사용하는 것입니다. 이런 방식으로 패키지 관리, 업데이트 및 종속성 해결의 이점을 유지합니다.
그러나 타사 저장소가 요구 사항의 일부인 경우 공식적으로 지원 되지 않습니다 .
DeadSnakes (get it) PPA는 시스템 패키지 관리에 포함되지 않은 Python 릴리스를 유지 관리합니다.
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install python2.7
이 PPA에 대한 자세한 내용은 여기를 참조하십시오 .
그러나 DeadSnakes는 포함되지 않은 주요 버전 만 제공하고 포인트 릴리스는 제공하지 않으므로 Python 2.7은 포함되지 않습니다. Ubuntu는 이미 Ubuntu 12.04 용 2.7을 패키지하므로 DeadSnakes는이를 제공하지 않습니다.
이 경우 우분투와 함께 기본 패키징을 사용해서는 안되는 경우를 만드는 것이 좋습니다. DeadSnakes에서 발췌 한 내용을 참조하십시오.
Using third-party modules packaged for Debian or Ubuntu with the Python
interpreters from this repository is a bit of a mixed bag. For Python 2, Python
modules from the official repositories will not work, as a consequence of how
Python packaging works in Debian. For Python 3 on the other hand, all
pure-Python module packages at least should be available; compiled extension
modules will not work however.
In general, you're better off installing Python modules using the common Python
packaging tools rather than the system package manager. For an introduction into
the Python packaging ecosystem and its tools, refer to;
http://guide.python-distribute.org/
A few of these tools might also be provided in this repository as a convenience.
운영 체제 패키지 관리를 사용해야하고 DeadSnakes에서 제공하는 패키지를 사용하여 다른 버전의 Ubuntu로 이동할 수 없거나 기본적으로 두 가지 옵션 만 남은 경우가 있습니다.
참고 : AskUbuntu 는 일반적으로 SuperUser보다 이와 같은 내용을 게시하는 것이 더 나은 StackExchange입니다.
ppa:fkrull/deadsnakes-python2.7
접미사 를 사용해야했다
Felix Krull은 Ubuntu Precise, Trusty 및 Utopic에 대한 최신 Python 2.7 릴리스가 포함 된 PPA 도 유지 관리했습니다 (현재 유지 관리하지 않은 상태). krondor describe와 동일한 프로세스를 사용할 수 있지만이 PPA를 대신 또는 추가적으로 사용하십시오 ppa:fkrull/deadsnakes-python2.7
.
sudo add-apt-repository ppa:fkrull/deadsnakes-python2.7
sudo apt-get update
sudo apt-get install python2.7
2.7.12-1~precise1
( 2.7.12-1~trusty1
및 2.7.10-0+utopic1
12.04, 14.04 및 14.10)을 제공합니다.