Note that I will forget how to pipenv install my private repository on the assumption that I have set the ssh key.
pipenv install
pipenv install git+ssh://[email protected]/[User name]/[Repository name].git#egg=[egg name]
If successful, it will be recorded in the Pipfile like this.
Pipfile
[packages]
...
[egg name] = {git = "ssh://[email protected]/[User name]/[Repository name].git"}
...
Recommended Posts