I installed Mercurial on my Mac, and it's wonderful. For me it's easier to grasp than Git so I wanted to use it to manage git-repositories. Therefore I installed hg-git with the following instructions:

http://hg-git.github.com/

But each time I issue a hg command it returns this error message:

  Mercurial error *** failed to import extension hggit: No module named hggit 

I'd might be important to note that I'm on a Mac not a Windows PC.

Does any know how to resolve this

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

After installing hg-git with the following command:

easy_install hg-git

Does the following work?

python -c "import hggit"

What does this say for you:

head -n1 `which hg`

The point of the latter command is to verify that the Python hg runs under has hggit installed. In my case it says '#!/usr/bin/python', which is my standard python command.

What does this say:

/opt/local/Library/Frameworks/Python.framework/Versions/2.6/Resources/Python.a­pp/Contents/MacOS/Python -c "import hggit"
link|improve this answer
1  
Well if I run that command it doesn't return anything, so no error message. – Stofke Feb 27 '11 at 14:59
So what do I do next? – Stofke Feb 27 '11 at 15:45
@Stofke: is the same Python used to run hg? I'd think that hg can't find your hggit installation. – aknuds1 Feb 27 '11 at 17:24
@Stofke: Case in point, I just installed hggit under Python 2.7, while the hg in my path is installed for Python 2.6. I get the exact same error as you :) – aknuds1 Feb 27 '11 at 20:26
head -n1 which hg returns this #!/opt/local/Library/Frameworks/Python.framework/Versions/2.6/Resources/Python.a‌​pp/Contents/MacOS/Python – Stofke Feb 28 '11 at 12:38
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.