Hi,I'm new with django and python.
I just strated a new django project in a venv using django 3.0 and seems that DJANGO_SETTINGS_MODULE is not set when running django-admin runserver
Enter code here.(test1) ioana.i@ioana-spamexperts:~/Workspace/Ioana/test1/test1$ django-admin runserverTraceback (most recent call last):File "/home/ioana.i/Workspace/Ioana/test1/bin/django-admin", line 8, in <module>sys.exit(execute_from_command_line())File "/home/ioana.i/Workspace/Ioana/test1/lib/python3.6/site-packages/django/core/management/__init__.py", line 401, in execute_from_command_lineutility.execute()File "/home/ioana.i/Workspace/Ioana/test1/lib/python3.6/site-packages/django/core/management/__init__.py", line 395, in executeself.fetch_command(subcommand).run_from_argv(self.argv)File "/home/ioana.i/Workspace/Ioana/test1/lib/python3.6/site-packages/django/core/management/base.py", line 328, in run_from_argvself.execute(*args, **cmd_options)File "/home/ioana.i/Workspace/Ioana/test1/lib/python3.6/site-packages/django/core/management/commands/runserver.py", line 60, in executesuper().execute(*args, **options)File "/home/ioana.i/Workspace/Ioana/test1/lib/python3.6/site-packages/django/core/management/base.py", line 369, in executeoutput = self.handle(*args, **options)File "/home/ioana.i/Workspace/Ioana/test1/lib/python3.6/site-packages/django/core/management/commands/runserver.py", line 67, in handleif not settings.DEBUG and not settings.ALLOWED_HOSTS:File "/home/ioana.i/Workspace/Ioana/test1/lib/python3.6/site-packages/django/conf/__init__.py", line 76, in __getattr__self._setup(name)File "/home/ioana.i/Workspace/Ioana/test1/lib/python3.6/site-packages/django/conf/__init__.py", line 61, in _setup% (desc, ENVIRONMENT_VARIABLE))django.core.exceptions.ImproperlyConfigured: Requested setting DEBUG, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings...
Seems like test1 module is not in the path, shouldn't be automatically added there?
(test1) ioana.i@ioana-spamexperts:~/Workspace/Ioana/test1/test1$ django-admin shellPython 3.6.9 (default, Nov 7 2019, 10:44:02) [GCC 8.3.0] on linuxType "help", "copyright", "credits" or "license" for more information.(InteractiveConsole)>>> import sys>>> sys.path['/home/ioana.i/Workspace/Ioana/test1/bin', '/usr/lib/python36.zip', '/usr/lib/python3.6', '/usr/lib/python3.6/lib-dynload', '/home/ioana.i/Workspace/Ioana/test1/lib/python3.6/site-packages']>>>
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/07386bda-38a4-4897-b428-c8a39e52c487%40googlegroups.com.
No comments:
Post a Comment