Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why #egg=foo when pip-installing from git repo

When I do a "pip install -e ..." to install from a git repo, I have to specify #egg=somename or pip complains. For example:

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

What's the significance of this "egg" string?

like image 892
Lorin Hochstein Avatar asked Aug 06 '12 20:08

Lorin Hochstein


1 Answers

per pip install -h the "egg" string is the directory that gets checked out as part of the install

like image 154
Will Ayd Avatar answered Oct 21 '22 21:10

Will Ayd