Re: how can i fix ImportError: No module named 'archive.settings'

2017-07-05 Thread Antonis Christofides
Hi, The most likely explanation is that your settings file has the wrong name or location. It should be "settings.py", and it should be in the "archive" directory. "archive" should not normally be in INSTALLED_APPS, unless you really know what you are doing, which you probably don't (yet). By

Re: how can i fix ImportError: No module named 'archive.settings'

2017-07-04 Thread James Schneider
File "", line 969, in _find_and_load File "", line 956, in _find_and_load_unlocked ImportError: No module named 'archive.settings' If I had to guess, you're missing the settings.py file in the root of your Django project. That should have been created by the 'django-admin.py startproject'

how can i fix ImportError: No module named 'archive.settings'

2017-07-04 Thread Body Abdo
python manage.py runserver Traceback (most recent call last): File "manage.py", line 22, in execute_from_command_line(sys.argv) File "/var/www/project/venv/lib/python3.5/site-packages/django/core/management/__init__.py", line 363, in execute_from_command_line utility.execute()