我在 Mac OSX 10.5.8 上。我关注了 Jacob Kaplan-Moss 关于使用 Buildout 设置 Django 的文章:http: //jacobian.org/writing/django-apps-with-buildout/
最后,我让这个 Buildout 工作了!...但我现在需要 PIL 和 Postgres 来构建一个完全独立的 Django 开发区域。我试图用我在互联网上阅读过的教程修改我的 buildout.cfg,但只是找不到如何做到这一点而不会引发各种错误。我觉得 PIL 和 Postgres 是完成这个小设置的下一步,所以我可以继续它......(顺便说一下,我不是这方面的专家,我来自 PHP 背景)。我当前的 buildout.cfg 看起来像这样:
[buildout]
parts = python django
develop = .
eggs = myproject
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = ${buildout:eggs}
[django]
recipe = djangorecipe
version = 1.1.1
project = myproject
projectegg = myproject
settings = testsettings
test = myproject
eggs = ${buildout:eggs}
谁能帮助我可靠地让 PIL 和 Postgres 与我的 Buildout 一起工作?提前非常感谢你......到目前为止我尝试过的所有事情都会引发各种错误。