Am working arround zc.buildout. I deployed my project in my local apache server.
My issue is when I run it, I got an import error 'No module named raven.conf' But there is all the packages I specified in egg directory.
That is django trying to load packages from system's python package, not from the isolated buildout folder. How can I solve it,
Myproject
  bootstrap.py
  setup.py
  bin/
     buildout
     django
     django.wsgi
     .....
  eggs/
       raven-3.1.13-py2.7.egg
       ..........
  parts
  project
  develop-eggs
  src/
  some files
  django.wsgi
  myapp/
    files
    settings.py
buildout.cfg
[buildout]
parts = python
        django
develop = .
eggs = beautifulsoup       
       MySQL_python
       pymongo
       requests
       .......
       .......
       raven
       sqlalchemy
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = ${buildout:eggs}
[django]
recipe = djangorecipe
wsgi = true
settings = settings
eggs = ${buildout:eggs}
Thanks in advance.
 
    