如何创建 Python / Django Egg?
我有一个 Python 程序(使用 Django - 这有关系吗?),如果你愿意的话,我想“捆绑”它。我该如何做到这一点,就像为 Java 创建 .jar 一样?
I have a Python program (with Django - does this matter?) that I want to 'bundle', if you like. How do I do this, in the same way one can create a .jar for Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想要使用 Python 安装工具。您创建一个描述文件 (setup.py),然后使用一行命令构建和创建 Egg(类似于 Make)。
有一个很好的演示,可以引导您了解详细信息——现在已经消失了。这是另一个讨论。
You want to use the Python SetupTools. You create a description file (setup.py) and then building and creating the egg is a one-line command (similar to Make).
There was a nice presentation that would walk you through the details -- it's gone now. So here's another discussion.
DjangoSkel 是正确的选择。
安装 DjangoSkel:
为 django Egg 创建骨架:
列出可用模板
DjangoSkel is the way to go.
Install DjangoSkel:
Create skeleton for django egg:
List available templates