How do I correctly install dulwich to get hg-git working on Windows?

后端 未结 10 2055
执念已碎
执念已碎 2021-01-31 01:35

I\'m trying to use the hg-git Mercurial extension on Windows (Windows 7 64-bit, to be specific). I have Mercurial and Git installed. I have Python 2.5 (32-bit) installed.

<
10条回答
  •  悲&欢浪女
    2021-01-31 02:34

    Until you get import dulwich to work, hggit won't work. Check that the dulwich egg file is in your easy-install.pth file under site-packages.

    For further debugging you can try ask pkg_resources about it:

    import pkg_resources
    pkg_resources.require("dulwich")
    

提交回复
热议问题