[Answer]-Manage.py help has different python path in virtualenv

0👍

The problem is solved due to add a python path: add2virtualenv ‘/home/robert/Vadain/vadain.webservice.curtainconfig/’

👤Robert

1👍

Don’t see any problem there. You could also insert something like:

import sys
sys.path.append('/home/robert/Vadain/vadain.webservice.curtainconfig/')
into your manage.py

Or you write a setup.py for your package and install it into your virtualenv (which would be the preferred way (pip install -e)

Leave a comment