蟒蛇蛋——有时膨胀,有时不膨胀
我在一台机器上运行 Fedora 32 位,并使用 easy_install 安装了几个 Egg。
我在 64 位 centos 5 机器上使用 easy_install 安装了相同的 Egg。 site-packages 目录是不同的 - 在我的 Fedora 机器上,一些 Eggs 已经膨胀,所以有以 .egg-info 结尾的目录以及主代码目录。在 Centos 上没有 .egg-info 目录。这是为什么呢?
谢谢
I'm running fedora 32 bit on one machine and have installed several eggs using easy_install.
I've installed the same eggs using easy_install on a 64-bit centos 5 machine. The site-packages directories are different - on my fedora machine, some of the eggs have been inflated so there are directories ending .egg-info as well as the main code directories. On Centos there are no .egg-info directories. Why is this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
包可以使用其 setup.py 文件中的 zip_safe 标志来指定自己是否应该取消存档。此外,大多数安装程序(例如“easy_install”)提供了显式控制解包的选项(例如 easy_install --zip-ok ...)...因此这可能取决于软件包在 Fedora 或 CentOS 下的安装方式。
A package can specify itself using the zip_safe flag inside its setup.py file if it should be unarchived or not. In addition most installers like 'easy_install' provide options to control the unpacking explicitly (e.g. easy_install --zip-ok ...)...so it may depend on how the packages are installed under Fedora oder CentOS.