TortoiseHG在13.04中未显示


11

TortoiseHG以前是在12.10上工作的,但是在今天重新安装后,它甚至没有使用thg命令也没有显示。


我有同样的行为;此外,thg返回的代码为0,这并没有太大帮助:-/
piwi

Answers:


10

我设法使用tortoisehg ppa轻松安装了它:

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

注意:@piwi的方法也可以。


谢谢,我不知道为什么今天我的thg没有显示出生命体征..这使车轮重新回到了我的车上
wim

1

这不是解决方案,而是解决方法。存储库中的TortoiseHG版本工作正常。

我首先安装了Mercurial的最新版本(否则,THG将抱怨HG的版本不匹配);我安装在~/opt

hg clone --branch stable http://selenic.com/hg ~/thg/mercurial
cd ~/thg/mercurial
python setup.py install --prefix=$HOME/opt

export PATH="$HOME/opt/bin:$PATH"
export PYTHONPATH="$HOME/opt/lib/python2.7/site-packages:$PYTHONPATH"

我使用bash,因此我需要删除该哈希条目以作参考:

hash -d hg

然后,我复制了thg存储库,并从我想从中使用的存储库中运行它:

hg clone --branch stable http://bitbucket.org/tortoisehg/thg ~/thg/tortoisehg
cd ~/devel/myrepo
~/thg/tortoisehg/thg

尽管这可以按预期工作,但是我找到了一个有效的PPA。看我的答案。
rebelliard 2013年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.