[Zope-dev] Buildout - including per-user site-packages dir.

2013-06-25 Thread Alex Leach
Hi, I'm trying to configure buildout.cfg so that paster looks for eggs in my home folder's site packages directory, as per PEP 370[1]. In buildout.cfg, I have the line: include-site-packages = true But packages I've installed in my home folder aren't found when my app is run (with paster)

[Zope-dev] Buildout - including per-user site-packages dir.

2013-06-25 Thread Alex Leach
Hi, I'm trying to configure buildout.cfg so that paster looks for eggs in my home folder's site packages directory, as per PEP 370[1]. In buildout.cfg, I have the line: include-site-packages = true But packages I've installed in my home folder aren't found when my app is run (with paster)

Re: [Zope-dev] Buildout - including per-user site-packages dir.

2013-06-25 Thread Johannes Raggam
AFAIK, you just need to create a .buildout directory in your home directory, put the file "default.cfg" in it with this content: [buildout] eggs-directory = /home/YOURS/.buildout/eggs download-cache = /home/YOURS/.buildout/downloads extends-cache = /home/YOURS/.buildout/extends and create the dir

Re: [Zope-dev] Buildout - including per-user site-packages dir.

2013-06-25 Thread Alex Leach
Hi Johannes, Thanks for the reply. On Tue, 25 Jun 2013 19:13:15 +0100, Johannes Raggam wrote: AFAIK, you just need to create a .buildout directory in your home directory, put the file "default.cfg" in it with this content: [buildout] eggs-directory = /home/YOURS/.buildout/eggs download-ca