[Answered ]-Cannot import settings in Django

2👍

The training directory is probably really not on sys.path. A usual approach is to run in a virtualenv and run pip install -e . in the django-training directory, assuming it has a setup.py. But any other means which fits with your development workflow is fine.

👤flub

Leave a comment