티스토리 뷰

728x90

git을 설치하는 방법은 'apt-get install git'입니다. 이 방법으로 했더니 "E: Package 'git' has no installation candidate"란 에러가 떠서 설치를 진행하지 못했습니다.

 

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package git is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'git' has no installation candidate

 

우분투 버전이 지원하지 않는 경우라고 하는데, 이때 해결 방법은 간단합니다.

apt-get update
apt-get install git

 

업데이트 이후 설치를 시도해보시고, 만약 이게 안 된다면

 

rm -vf /var/lib/apt/lists/*
apt-get update

 

이 명령어를 실행하고 설치를 다시 시도해보세요. 마지막으로 "sudo apt update"로 해주세요.

 

출처: https://stackoverflow.com/questions/30932121/git-installation-error-missing-installation-candidate

 

감사합니다.

 

 

728x90
댓글