pip install from git repo branch

前端 未结 6 2240
醉酒成梦
醉酒成梦 2020-11-22 02:58

Trying to pip install a repo\'s specific branch. Google tells me to

pip install git+https://github.com/user/repo.git@branch

The

6条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-22 03:41

    Instructions to install from private repo using ssh credentials:

    $ pip install git+ssh://git@github.com/myuser/foo.git@my_version
    

提交回复
热议问题