hg-git uninstall using easy_install - just get crazy about this !
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 :
hg clone https://[email protected]/schacon/hg-git.git abort: HTTP Error 406: Not Acceptable
hg clone http://[email protected]/schacon/hg-git.git abort: HTTP Error 406: Not Acceptable
hg clone git://[email protected]/schacon/hg-git.git abort: repository git://[email protected]/schacon/hg-git.git not found!
hg clone git+ssh://[email protected]/schacon/hg-git.git abort: repository git+ssh://[email protected]/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 higherProcessing 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.
Thanks for help.