Python: Why do some packages get installed as eggs and some as "egg folders"?
Posted
by cool-RR
on Stack Overflow
See other posts from Stack Overflow
or by cool-RR
Published on 2010-05-09T17:09:23Z
Indexed on
2010/05/09
17:18 UTC
Read the original article
Hit count: 222
I maintain a few Python packages. I have a very similar setup.py
file for each of them. However, when doing setup.py install
, one of my packages gets installed as an egg, while the others get installed as "egg folders", i.e. folders with an extension of "egg".
I couldn't figure out what is the difference between them that causes this different behavior. What can it be?
© Stack Overflow or respective owner