Distributing my python module inside organization
我在python中创建了一些模块,我想将它们分发到我的组织中。 这些模块已存储在BitBucket中。
有没有办法用"pip install"分发它们?
什么是正确的方法?
你可以从GitHub pip安装,你应该能够从Bitbucket这样做(未经验证),因为它也使用git。
1 | pip install git+ssh://git@bitbucket.org/my_username/my_repo.git@tagnumber |
私人回购请参阅:
是否可以使用pip从私有github存储库安装包?
您可以在正确的位置添加ssh键以使其工作。
另一个选择是在组织内的服务器上运行您自己的git远程实例,这可能会阻止您的同事进行身份验证的麻烦。