When I run python manage.py shell, I can print out the python path
python manage.py shell
>>> import sys >>> sys.path
What should I typ
To show all django settings (including default settings not specified in your local settings file):
from django.conf import settings dir(settings)