[CentOS] python3 설치하기[dchecheb님]
[root@DEVEL1 local] yum install ?y https://centos6.iuscommunity.org/ius-release.rpm
Loaded plugins: fastestmirror, security
Setting up Install Process
Loading mirror speeds from cached hostfile
Cannot open: https://centos6.iuscommunity.org/ius-release.rpm. Skipping.
Error: Nothing to do
yum을 이용해 ius를 rpm 패키지 설치 하려는 와중에 에러가 발생했다.
Cannot open: https://centos6.iuscommunity.org/ius-release.rpm. Skipping.
Error: Nothing to do
핵심 문구는 위와 같다고 판단했고, 즉시 검색해보았다.
문제는 Repository 링크에 있었고 패키지 설치 링크 주소를 변경하여 해결하였다.
yum install ?y https://centos6.iuscommunity.org/ius-release.rpm
명령어 대신 아래 명령어로 설치해주면 된다.
sudo yum install -y epel-release.noarch
sudo yum install -y https://repo.ius.io/ius-release-el6.rpm
오늘도 해결 완료!