Reputation: 10633
I have to work with few django projects that uses virtualenv (and that is fine). Except its quite hard to get this virtual setup every time I want to develop something.
So I'd like to use zc.buildout, it would solve easy environment construction issue. Unfortunately I must not break old virtualenv way of developing/deploying.
Projects heavily rely on manage.py file.
/project_root
|-- virtual
|-- website
|-- manage.py (has to access all python packages that buildout installs)
`-- ...
Basically I need buildout to install eggs to virtual/lib/python/site_packages folder, best would be to symlink form egg cache.
Notes:
Its not perfect, but works:
Upvotes: 2
Views: 1071
Reputation: 4422
You can use cp.recipe.cmd and run the easy_install command with the --install-dir optiion
Upvotes: 1