为什么#egg = foo当从git repo进行pip安装时

当我做一个“点安装-e …”从git仓库安装时,我必须指定#egg = somename或pip抱怨。 例如:

pip install -e git://github.com/hiidef/oauth2app.git#egg=oauth2app 

这个“蛋”串有什么意义?

per pip install -h“egg”string是作为安装的一部分被检出的目录

你必须包含#egg = Package,所以pip知道该URL的内容。 请参阅https://pip.pypa.io/en/stable/reference/pip_install/#vcs-support

更多的鸡蛋