Python的含义是"蟒蛇",而eggs的含义就是"蟒蛇蛋"。
python的eggs文件有点像java中的jar文件,是一个工程打包文件,便于安装部署。
在理想情况中,eggs 是一个使用 zip 压缩的文件,其中包括了所有需要的包文件。但是在某些情况下,eggs 只是一个简单的未曾压缩的子目录,但是里面的内容是相同的。
Python wheel 是一个新标准,用于取代 eggs的。官方说明如下:
Wheels are the new standard of Python distribution and are intended to replace eggs.
Support is offered in pip >= 1.4 and setuptools >= 0.8.