安装Mercurial Activity扩展的问题

时间:2010-10-29 14:27:31

标签: windows mercurial tortoisehg

我正在使用安装了Mercurial TortoiseHg的Windows XP。现在我需要安装外部activity extension。我下载了扩展程序并在hgrc中启用了它。

当我尝试使用命令调用它时:

hg activity

我收到以下错误:

There are 292 changesets
Hg activity options: you need matplotlib in your python path in order to use the hg activity extension.

然后我安装了python 2.6和matplotlib。所以它们的路径是:

  • d:\ Python26 \
  • d:\ Python26 \ LIB \站点包\ matplotlib

现在我不知道如何告诉mercurial活动扩展从该位置使用matplotlib?我在TortoiseHg FAQ的标题下找到了一些解释,标题是“TortoiseHg扩展在哪里寻找Windows上的外部Python模块?”

但是当我执行那里写的步骤时,我会收到与上面相同的错误消息。

2 个答案:

答案 0 :(得分:1)

我尝试了这种方法,似乎工作正常。

您需要将路径包含为

import sys
sys.path.append(r'C:\Python26\Lib\site-packages')

另请参阅以下代码@ http://bitbucket.org/tortoisehg/stable/src/cf4b3dfd15ee/contrib/hg

# enable importing on demand to reduce startup time
try:
    from mercurial import demandimport; demandimport.enable()
except ImportError:
    sys.stderr.write("abort: couldn't find mercurial libraries in [%s]\n" %
                     ' '.join(sys.path))
    sys.stderr.write("(check your install and PYTHONPATH)\n")
    sys.exit(-1)

您应该能够在PYTHONPATH环境变量中添加以下路径(D:\ Python26 \ Lib \ site-packages)。

这应该允许与TortoiseHg捆绑在一起的python查看捆绑目录之外的非标准路径。

答案 1 :(得分:0)

对不起,这是超级晚了。我最终安装了python 2.7,并从命令行运行hg

安装python并将其添加到路径后,从windows命令提示符运行以下命令:

python -m pip install -U pip setuptools
python -m pip install matplotlib
python -m pip install mercurial

之后克隆hgactivity

hg clone http://sources.freehackers.org/Hgactivity/

然后将其添加到mercurial.ini文件中:

[extensions]
activity = C:\Repos\Hgactivity\activity

现在从命令行你可以做到这一点:

C:\Python27\Scripts\hg activity --help

希望有所帮助。