似乎有不止一种方法可以将鸡蛋安装到建筑中。
方式一:
[buildout]
...
eggs =
eggname
othereggname
...
方式二:
[buildout]
...
parts = eggs
[eggs]
recipe = zc.recipe.egg
eggs = eggname
= othereggname
两种方式都有效。(方式 2 的变化是将每个要求安装为单独的部分。)
这两种方法有什么区别?
对于我的项目,我使用 djangorecipe 和 mr.developer 进行构建。