1

我在使用 hg-git 时遇到问题。

在我的 hgrc 我有:

[extensions]
hgext.bookmarks=
hggit=~/anaconda/lib/python3.5/site-packages/hg_gt-0.8.2-py3.5.egg/hggit

当我尝试 hgclone 时,我得到:

*** failed to import extension hggit from ~/anaconda/lib/python3.5/site-packages/hg_git-0.8.2-py3.5.egg/hggit: No module named dulwich.errors.

我已经通过运行 easy_install 'dulwich>=0.8.0' 安装了 dulwich.errors。

无法弄清楚发生了什么。

非常感谢!

4

2 回答 2

1

您必须确保hg,hg-gitdulwich已安装并在同一 python 环境中运行。在说什么which hgwhich dulwich

于 2015-11-09T07:25:48.657 回答
0

在 Mac 上,毫无疑问,在类似的环境中,PYTHONPATH 环境变量也必须正确设置,例如,如果 dulwich 在 /Library/Python/2.7/site-packages/ 中,则 PYTHONPATH 必须包含该目录。

于 2017-10-13T04:31:08.057 回答