1👍
OSX Issue:
Make sure that your django server process has access to write on the configured location.
Ubuntu Issue:
The manage.py
module can’t load the settings file configured in it. You can try after explicitly adding the --settings=<project_name>.settings.py
(p_live) user@ip-xx-xx-xx-xxx:~/sites/site.com/source$ python manage.py runserver --settings=<project_name>.settings.py
<project_name>
= Pacakage name (or Django project name) where settings.py exists.
Source:stackexchange.com