web-dev-qa-db-ja.com

Ubuntuにgitをインストールできません14.10

主題が言うように、私はgitをインストールできません。 apt-get updateに続いてapt-get upgradeを試し、またapt-get install git-coreを試しました。以下のすべての場合に同じ問題があります。

ubuntu-14:~ >> apt-get install git
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  git-man liberror-Perl
Suggested packages:
  git-daemon-run git-daemon-sysvinit git-doc git-el git-email git-gui gitk gitweb git-Arch git-cvs git-mediawiki git-svn
The following NEW packages will be installed:
  git git-man liberror-Perl
0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 3,066 kB/3,087 kB of archives.
After this operation, 24.9 MB of additional disk space will be used.
Do you want to continue? [Y/n] 
WARNING: The following packages cannot be authenticated!
  liberror-Perl git-man git
Install these packages without verification? [y/N] y
Err http://us.archive.ubuntu.com/ubuntu/ utopic/main git-man all 1:2.1.0-1
  404  Not Found [IP: 2001:67c:1562::17 80]
Err http://us.archive.ubuntu.com/ubuntu/ utopic/main git i386 1:2.1.0-1
  404  Not Found [IP: 2001:67c:1562::17 80]
E: Failed to fetch http://us.archive.ubuntu.com/ubuntu/pool/main/g/git/git-man_2.1.0-1_all.deb  404  Not Found [IP: 2001:67c:1562::17 80]

E: Failed to fetch http://us.archive.ubuntu.com/ubuntu/pool/main/g/git/git_2.1.0-1_i386.deb  404  Not Found [IP: 2001:67c:1562::17 80]

E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
3
M. A. Sridhar

Apt-getを使用してgitをインストールする必要があります

Sudo apt-get update
Sudo apt-get install git

推奨されるアプローチとしてのみ。

それが機能していない場合は、これを試してください

Sudo apt-get update
Sudo apt-get install build-essential libssl-dev libcurl4-gnutls-dev libexpat1-dev gettext unzip

Gitをインストールする上記の方法は、ソースからソフトウェアをコンパイルすることです。これには時間がかかり、パッケージマネージャーでは維持されませんが、最新リリースをダウンロードでき、カスタマイズする場合に含めるオプションをある程度制御できます。

回避策として-すべてのgitリポジトリには、コンテンツ全体をZipファイルとしてダウンロードする別の方法もあります。

4
Ashu