gpt4 book ai didi

windows - 安装 Mercurial Activity 扩展的问题

转载 作者:可可西里 更新时间:2023-11-01 13:47:56 24 4
gpt4 key购买 nike

我使用的是安装了 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\site-packages\matplotlib

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

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

最佳答案

我尝试了这种方法,似乎效果很好。

您需要将路径包含在内

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 查看捆绑目录之外的非标准路径。

关于windows - 安装 Mercurial Activity 扩展的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4052768/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com