Python Egg 文件有什么意义?

发布于 2024-10-06 10:00:30 字数 88 浏览 3 评论 0原文

当我运行 python setup.py install django 时,它会生成一个 Egg 文件。

Python Egg 文件有什么用处?

When I run python setup.py install django, it generates an egg file.

What is the usefulness of Python egg files?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

躲猫猫 2024-10-13 10:00:30

“egg”是Python 的二进制分发格式。它基本上是一个带有一些额外元数据的压缩文件,您可以将其提供给其他 Python 用户。他可以“安装”并使用它们。有关它们的详细信息,请参阅 http://peak.telecommunity.com/DevCenter/PythonEggs。
由于它是“本机”格式,Python 可以使用自定义导入器等。

有关如何使用它们的详细信息,请查看

我已经与包装世界脱节有一段时间了。有人讨论停止支持二进制分发格式。我所知道的相关文档位于 http://bitbucket。 org/tarek/distutils2/src/tip/docs/design/wiki.rst

The "egg" is Python's binary distribution format. It's basically a zipped file with some extra metadata that you can give another Python user. He can "install" and use them. For details on what they are, please refer to http://peak.telecommunity.com/DevCenter/PythonEggs.
Since it's a "native" format, Python can employ custom importers and the like.

For details on how to use them, check this out.

I've been out of touch with the packaging world for a while now. There was some talk of discontinuing support for binary distribution formats. The relevant documents that I know of are at http://bitbucket.org/tarek/distutils2/src/tip/docs/design/wiki.rst

天涯沦落人 2024-10-13 10:00:30

Egg 文件是一个存档,其中包含一个模块(在您的例子中是 django),并让您能够导入something_from_egg。了解更多此处

the egg file is an archive which holds a module (django in your case) and gives you the ability to import something_from_egg. Read more here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文