pip.config文件,如何添加凭据git private repo

时间:2019-10-23 08:29:32

标签: python python-3.x git google-cloud-platform pip

我正在将GCP与apache Airflow一起使用,并且需要从github中的私有存储库安装Python依赖项。

关于我应该如何通过我的凭据,GCP文档还不清楚,pip文档也是如此。

来自GCP文档:

  • 访问存储库的凭据
  • 非默认pip安装选项

示例:

[global]
extra-index-url=https://github.com/my_private_repo_example

我该如何传递我的凭据,或者更好地传递具有只读权限的令牌。

1 个答案:

答案 0 :(得分:1)

假设ssh客户端配置正确,这样的话就足够了:

pip install git+ssh://git.example.com/MyProject#egg=MyProject

来自pip install documentation

不需要修改pip.config文件。