On 01/06/2010 04:23 PM, littlejim84 wrote:

Can anyone help me to reliably get PIL and Postgres working with my
Buildout? Thank you so much in advance... Everything I've tried so far just
throws up all sorts of errors.

Add the lines marked with '<<<' behind them to your buildout to *probably* solve the PIL issue.

* The find-links line points at a specially-stripped PIL download used by for instance Plone. It is stripped of the 'tk' stuff, which helps a lot with the common PIL compilation errors.

* The versions lines are needed to pin PIL to 1.1.6 as 1.1.7 is just out: this has several problems, at least in buildouts I saw.


[buildout]
parts = python django
develop = .
eggs = myproject
find-links = http://dist.repoze.org/   <<<
versions = versions                    <<<

[versions]                             <<<
PIL = 1.1.6                            <<<

[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}



Reinout

--
Reinout van Rees - rein...@vanrees.org - http://reinout.vanrees.org
Programmer/advisor at http://www.nelen-schuurmans.nl
"Military engineers build missiles. Civil engineers build targets"

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.


Reply via email to