安装 TortoiseHg:需要更高的 Mercurial 版本

安装 TortoiseHg:需要更高的 Mercurial 版本

我正在使用 Ubuntu 11.04,并且正在尝试安装 TortoiseHg。我已经应用了 TortoiseHg 网站上的 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

我明白这意味着什么:我需要安装 Mercurial 1.8。问题是我安装不了。如果我尝试sudo apt-get install mercurial,它会说 1.7.5 是最新版本,这肯定是不是

那么我怎样才能让这个东西安装更新版本的 Mercurial?

我尝试了来自这个答案安装 Mercurial,但这没有帮助。它再次说 Mercurial 是最新的。

答案1

使用 mercurial PPA

apt-add-repository ppa:mercurial-ppa/releases
apt-get update 
apt-get install tortoisehg

相关内容