-1

I have a repository that I want to install from GitHub/GitLab using SSH.

pip install git+ssh://git.corp.com/my_group/my_project.git

However, this fails with the error of: it looks like a path file does not exist.

However, according to documentation it should work pip install from git repo branch https://pip.pypa.io/en/stable/topics/vcs-support/ what am I doing wrong and overlooking?

Georg Heiler
  • 16,916
  • 36
  • 162
  • 292

1 Answers1

-1

I guess your syntax is missing the git@ part:

pip install git+ssh://git@git.corp.com/my_group/my_project.git

Without git@ pip is probably unable to recognize a URL and looks for a file with this name instead.

Dima Chubarov
  • 16,199
  • 6
  • 40
  • 76