hg clone git://git@github.com/schacon/hg-git.git
abort: repository git://git@github.com/schacon/hg-git.git not found!
hg clone git+ssh://git@github.com/schacon/hg-git.git
abort: repository git+ssh://git@github.com/schacon/hg-git.git not found!
Because of that, I decided to remove hg-git using python easy_install, using
easy_install -m hg-git
and returns
Searching for hg-git
Best match: hg-git 0.8.0
Processing hg_git-0.8.0-py2.7.egg
Using /usr/local/lib/python2.7/dist-packages/hg_git-0.8.0-py2.7.egg
Because this distribution was installed --multi-version, before you can
import modules from this package in an application, you will need to
'import pkg_resources' and then use a 'require()' call similar to one of
these examples, in order to select the desired version:
pkg_resources.require("hg-git") # latest installed version
pkg_resources.require("hg-git==0.8.0") # this exact version
pkg_resources.require("hg-git>=0.8.0") # this version or higher
Processing dependencies for hg-git
Finished processing dependencies for hg-git
It just uninstall nothing, and trying to find out why, but blocked.
Once uninstalled, I could you repository method to install hg-git.
Hello,
Installed hg-git using way explained on http://hg-git.github.io/ with python easy_install.
Looks like hg-git do not work installed by this way, here the errors I get when cloning a git repo :
Because of that, I decided to remove hg-git using python easy_install, using
and returns
It just uninstall nothing, and trying to find out why, but blocked. Once uninstalled, I could you repository method to install hg-git.
Thanks for help.