Issue
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:
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
Solution
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.app/Contents/MacOS/Python -c "import hggit"
Answered By – aknuds1
This Answer collected from stackoverflow, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0