web-dev-qa-db-ja.com

Apt-getはUbuntu12.04でパッケージ `git`を見つけられません

私はubuntu12.04にgitをインストールしようとしています。しかし、コマンドを入力すると

Sudo apt-get install git

次のメッセージが表示されます。すでにSudo apt-get updateを実行しました。

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
However the following packages replace it:
  git-el

E: Package 'git' has no installation candidate
13
Shahzeb Khan

代わりにgit-coreをインストールする必要があります

Sudo apt-get -y install git-core
28
Konstantin Rudy