Yes calibre-debug uses only the calibre src folder. You have many options to get around that. First run this
calibre-debug -c "import sys; print sys.path"
If you put your django folder in some folder listed there, it will be used.
Alternately, you can modify mamage.py at the top, to do this:
import sys
sys.path.append('/path/to/django')
before importing any django modules.
|