web-dev-qa-db-ja.com

TortoiseHgのインストール:より高いMercurialバージョンが必要

Ubuntu 11.04を使用しています。TortoiseHgをインストールしようとしています。 TortoiseHgのWebサイトからPPAを適用したので、apt-getが実際に見つけることができます。しかし、Sudo apt-get tortoisehgと入力するたびに、次のようになります。

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 tortoisehg : Depends: Mercurial (>= 1.8) but 1.7.5-1ubuntu1 is to be installed
E: Broken packages

これが何を意味するのか理解しています。Mercurial1.8をインストールする必要があります。問題は、私ができないことです。 Sudo apt-get install Mercurialを試してみると、1.7.5が最新バージョンであると言われていますが、これは間違いなくではありません

それでは、Mercurialの最新バージョンをインストールするように、このことを納得させるにはどうすればよいでしょうか?

この回答 のコマンドを試してMercurialをインストールしましたが、助けにはなりませんでした。再び、Mercurialは最新であると述べました。

8
Nicol Bolas

Mercurial PPAを使用する

apt-add-repository ppa:Mercurial-ppa/releases
apt-get update 
apt-get install tortoisehg
10
tgm4883