0
1

More than 3 years have passed since last update.

Private Bitbucket Repository から ssh で pipenv install する

Posted at

ssh鍵設定はしている前提で、自分のプライベートリポジトリを pipenv install する場合のやり方を忘れるのでメモ。

pipenv install
pipenv install git+ssh://git@bitbucket.org/[ユーザ名]/[リポジトリ名].git#egg=[egg名]

成功すると Pipfile にこんな感じに記録される。

Pipfile
[packages]
...
[egg名] = {git = "ssh://git@bitbucket.org/[ユーザ名]/[リポジトリ名].git"}
...
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1