pip가 포함 된 도커 컨테이너를 만들려고합니다.
저는 CentOS 7에 있습니다.
docker build 명령을 실행 한 조각은 다음과 같습니다.
Step 3 : RUN yum -y install python-pip
---> Running in 25d1ba46e6dc
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirror.vcu.edu
* extras: mirror.clarkson.edu
* updates: mirrors.unifiedlayer.com
No package python-pip available.
Error: Nothing to do
2015/02/13 19:23:48 The command [/bin/sh -c yum -y install python-pip] returned a non-zero code: 1
Dockerfile을 게시하지만 표준 CentOS 배포판에서 python-pip를 사용할 수없는 것 같습니다.
sudo yum -y install python-pip
[sudo] password for theuser:
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
* base: mirror.thelinuxfix.com
* extras: mirrors.xmission.com
* updates: mirrors.tripadvisor.com
No package python-pip available.
Error: Nothing to do
호스트 시스템의 설치 문제를 해결하기위한이 링크가 있습니다 : http://www.liquidweb.com/kb/how-to-install-pip-on-centos-7/ rpm 또는 curl 사용이 포함됩니다. Docker에게는 약간 지저분하다고 생각합니다.
또한 CentOS가 표준 배포판에서 pip를 제거했다면 그럴만한 이유가있을 수 있으며 무차별 강제로 설치해서는 안됩니다.
우분투 나 다른 배포판에서는 문제가되지 않는 것 같습니다. 그냥 CentOS 7.
간결한 질문은 CentOS 7에서 pip (또는 대안)를 설치하는 기본 방법은 무엇입니까?