schacon / hg-git

mercurial to git bridge, pushed to directly from the hg-git plugin in Hg
GNU General Public License v2.0
620 stars 72 forks source link

hg-git uninstall using easy_install - just get crazy about this ! #294

Open 3kynox opened 9 years ago

3kynox commented 9 years ago

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://git@github.com/schacon/hg-git.git abort: HTTP Error 406: Not Acceptable

hg clone http://git@github.com/schacon/hg-git.git abort: HTTP Error 406: Not Acceptable

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.

Thanks for help.