You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using mercurial to access git repositories, but I can not get pip working with git repository accessed by ssh.
pip install -e hg+git://github.com/... - works :)
pip install -e hg+git+ssh://... - almost works, but it tries to clone repository with #egg=sleekxmpp. See below:
#!shell
pip install -e hg+git+ssh://[email protected]:andyhelp/SleekXMPP.git#egg=sleekxmpp
Obtaining sleekxmpp from hg+git+ssh://[email protected]:andyhelp/SleekXMPP.git#egg=sleekxmpp
Cloning hg git+ssh://[email protected]:andyhelp/SleekXMPP.git#egg=sleekxmpp to ./sleekxmpp
abort: ref egg=sleekxmpp not found on remote server
I guess that pip is confused by two + signs used to specify url?
I'm not convinced that we want to support vcs bridging to vcs functionality, we'd endup having to support git+{cvs,darcs,hg,...}. for example. This seems as if it adds complexity, pip is inherently a package manager and should support the upstream package repository types, but this workflow seems quite corner case to me (ie use only one vcs for everything).
I'm using mercurial to access git repositories, but I can not get pip working with git repository accessed by ssh.
pip install -e hg+git://github.com/... - works :)
pip install -e hg+git+ssh://... - almost works, but it tries to clone repository with #egg=sleekxmpp. See below:
I guess that pip is confused by two + signs used to specify url?
The text was updated successfully, but these errors were encountered: