On Fri, 19 Jun, 2020, 5:31 PM DHRUVA, <[email protected]> wrote:
> Just try adding appname into the installed Apps in the Settings file > > On Fri, 19 Jun, 2020, 5:27 PM RANGA BHARATH JINKA, < > [email protected]> wrote: > >> Hi, >> You have to go into your django project folder where manage.py file >> is located. Test with using "ls" inside your command prompt. All the best. >> >> On Fri, Jun 19, 2020 at 5:08 PM Tanisha Jain <[email protected]> >> wrote: >> >>> still the problem persists. >>> >>> On Fri, 19 Jun 2020 at 07:15, Utsab Bashyal <[email protected]> wrote: >>> >>>> enter inside your project directory using command cd project_name in >>>> termina and run manage.py runserver >>>> >>>> >>>> On Fri, Jun 19, 2020 at 6:52 AM Thomas Furtado < >>>> [email protected]> wrote: >>>> >>>>> Hii, thanks for answering but it didn't work >>>>> Now it showed: no module named 'django.contrib.statics' >>>>> >>>>> Em qui, 18 de jun de 2020 22:03, chaitanya orakala < >>>>> [email protected]> escreveu: >>>>> >>>>>> Hi Thomas, >>>>>> Please run the following commands to solve this problem, before >>>>>> running the server. >>>>>> >>>>>> python manage.py makemigrations >>>>>> python manage.py migrate >>>>>> >>>>>> and then command >>>>>> python manage.py runserver >>>>>> >>>>>> Hope this helps. Let me know if you have any questions >>>>>> >>>>>> On Thu, Jun 18, 2020 at 6:15 PM Thomas Furtado < >>>>>> [email protected]> wrote: >>>>>> >>>>>>> Hi, I've seen you sent this last year and I'm having the same error >>>>>>> message at my pycharm... Did you solve this?? could you help me with >>>>>>> this >>>>>>> please?? >>>>>>> >>>>>>> Em sábado, 13 de julho de 2019 08:35:31 UTC-3, Jack Bergemann >>>>>>> escreveu: >>>>>>>> >>>>>>>> (venv) C:\Users\Chas\rp-portfolio\personal_portfolio>python >>>>>>>> manage.py runserver >>>>>>>> Watching for file changes with StatReloader >>>>>>>> Exception in thread django-main-thread: >>>>>>>> Traceback (most recent call last): >>>>>>>> File "C:\Python37\lib\threading.py", line 926, in _bootstrap_inner >>>>>>>> self.run() >>>>>>>> File "C:\Python37\lib\threading.py", line 870, in run >>>>>>>> self._target(*self._args, **self._kwargs) >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\utils\autoreload.py", >>>>>>>> line 54, in wrapper >>>>>>>> fn(*args, **kwargs) >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\core\management\commands\runserver.py", >>>>>>>> line 109, in inner_run >>>>>>>> autoreload.raise_last_exception() >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\utils\autoreload.py", >>>>>>>> line 77, in raise_last_exception >>>>>>>> raise _exception[1] >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\core\management\__init__.py", >>>>>>>> line 337, in execute >>>>>>>> autoreload.check_errors(django.setup)() >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\utils\autoreload.py", >>>>>>>> line 54, in wrapper >>>>>>>> fn(*args, **kwargs) >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\__init__.py", >>>>>>>> line 24, in setup >>>>>>>> apps.populate(settings.INSTALLED_APPS) >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\apps\registry.py", >>>>>>>> line 91, in populate >>>>>>>> app_config = AppConfig.create(entry) >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\apps\config.py", >>>>>>>> line 90, in create >>>>>>>> module = import_module(entry) >>>>>>>> File "C:\Python37\lib\importlib\__init__.py", line 127, in >>>>>>>> import_module >>>>>>>> return _bootstrap._gcd_import(name[level:], package, level) >>>>>>>> File "<frozen importlib._bootstrap>", line 1006, in _gcd_import >>>>>>>> File "<frozen importlib._bootstrap>", line 983, in _find_and_load >>>>>>>> File "<frozen importlib._bootstrap>", line 965, in >>>>>>>> _find_and_load_unlocked >>>>>>>> ModuleNotFoundError: No module named 'hello_world' >>>>>>>> >>>>>>>> Traceback (most recent call last): >>>>>>>> File "manage.py", line 21, in <module> >>>>>>>> main() >>>>>>>> File "manage.py", line 17, in main >>>>>>>> execute_from_command_line(sys.argv) >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\core\management\__init__.py", >>>>>>>> line 381, in execute_from_command_line >>>>>>>> utility.execute() >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\core\management\__init__.py", >>>>>>>> line 375, in execute >>>>>>>> self.fetch_command(subcommand).run_from_argv(self.argv) >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\core\management\base.py", >>>>>>>> line 323, in run_from_argv >>>>>>>> self.execute(*args, **cmd_options) >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\core\management\commands\runserver.py", >>>>>>>> line 60, in execute >>>>>>>> super().execute(*args, **options) >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\core\management\base.py", >>>>>>>> line 364, in execute >>>>>>>> output = self.handle(*args, **options) >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\core\management\commands\runserver.py", >>>>>>>> line 95, in handle >>>>>>>> self.run(**options) >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\core\management\commands\runserver.py", >>>>>>>> line 102, in run >>>>>>>> autoreload.run_with_reloader(self.inner_run, **options) >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\utils\autoreload.py", >>>>>>>> line 587, in run_with_reloader >>>>>>>> start_django(reloader, main_func, *args, **kwargs) >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\utils\autoreload.py", >>>>>>>> line 572, in start_django >>>>>>>> reloader.run(django_main_thread) >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\utils\autoreload.py", >>>>>>>> line 290, in run >>>>>>>> self.run_loop() >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\utils\autoreload.py", >>>>>>>> line 296, in run_loop >>>>>>>> next(ticker) >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\utils\autoreload.py", >>>>>>>> line 336, in tick >>>>>>>> for filepath, mtime in self.snapshot_files(): >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\utils\autoreload.py", >>>>>>>> line 352, in snapshot_files >>>>>>>> for file in self.watched_files(): >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\utils\autoreload.py", >>>>>>>> line 251, in watched_files >>>>>>>> yield from iter_all_python_module_files() >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\utils\autoreload.py", >>>>>>>> line 103, in iter_all_python_module_files >>>>>>>> return iter_modules_and_files(modules, frozenset(_error_files)) >>>>>>>> File >>>>>>>> "C:\Users\Chas\rp-portfolio\venv\lib\site-packages\django\utils\autoreload.py", >>>>>>>> line 138, in iter_modules_and_files >>>>>>>> if not path.exists(): >>>>>>>> File "C:\Python37\lib\pathlib.py", line 1346, in exists >>>>>>>> self.stat() >>>>>>>> File "C:\Python37\lib\pathlib.py", line 1168, in stat >>>>>>>> return self._accessor.stat(self) >>>>>>>> OSError: [WinError 123] The filename, directory name, or volume >>>>>>>> label syntax is incorrect: '<frozen importlib._bootstrap>' >>>>>>>> >>>>>>> -- >>>>>>> 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 [email protected]. >>>>>>> To view this discussion on the web visit >>>>>>> https://groups.google.com/d/msgid/django-users/2a2bc753-f7ee-4f85-be07-a35bd910620fo%40googlegroups.com >>>>>>> <https://groups.google.com/d/msgid/django-users/2a2bc753-f7ee-4f85-be07-a35bd910620fo%40googlegroups.com?utm_medium=email&utm_source=footer> >>>>>>> . >>>>>>> >>>>>> -- >>>>>> You received this message because you are subscribed to a topic in >>>>>> the Google Groups "Django users" group. >>>>>> To unsubscribe from this topic, visit >>>>>> https://groups.google.com/d/topic/django-users/TGCTXTFbHFI/unsubscribe >>>>>> . >>>>>> To unsubscribe from this group and all its topics, send an email to >>>>>> [email protected]. >>>>>> To view this discussion on the web visit >>>>>> https://groups.google.com/d/msgid/django-users/CAPcTzRYV_Ws-VgtK3dTkauYbtm7O2FKH1AJdewfDp0%2BPOuKOPw%40mail.gmail.com >>>>>> <https://groups.google.com/d/msgid/django-users/CAPcTzRYV_Ws-VgtK3dTkauYbtm7O2FKH1AJdewfDp0%2BPOuKOPw%40mail.gmail.com?utm_medium=email&utm_source=footer> >>>>>> . >>>>>> >>>>> -- >>>>> 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 [email protected]. >>>>> To view this discussion on the web visit >>>>> https://groups.google.com/d/msgid/django-users/CAJPMF7OXWJK1rbh_nof95VD4C2zJsmSe5j%2Bk-YCBLneAfm1YdQ%40mail.gmail.com >>>>> <https://groups.google.com/d/msgid/django-users/CAJPMF7OXWJK1rbh_nof95VD4C2zJsmSe5j%2Bk-YCBLneAfm1YdQ%40mail.gmail.com?utm_medium=email&utm_source=footer> >>>>> . >>>>> >>>> -- >>>> 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 [email protected]. >>>> To view this discussion on the web visit >>>> https://groups.google.com/d/msgid/django-users/CAFO4Knza2PaX9svPH_tNiHnLL4xOZnQD4fjpi9CBmx1DHytPBw%40mail.gmail.com >>>> <https://groups.google.com/d/msgid/django-users/CAFO4Knza2PaX9svPH_tNiHnLL4xOZnQD4fjpi9CBmx1DHytPBw%40mail.gmail.com?utm_medium=email&utm_source=footer> >>>> . >>>> >>> -- >>> 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 [email protected]. >>> To view this discussion on the web visit >>> https://groups.google.com/d/msgid/django-users/CAF1kx9nXqoxe3Eh6o5PGt1u76iVbAfJjLd7eF9rF_qU9Q%3D%2B2Kw%40mail.gmail.com >>> <https://groups.google.com/d/msgid/django-users/CAF1kx9nXqoxe3Eh6o5PGt1u76iVbAfJjLd7eF9rF_qU9Q%3D%2B2Kw%40mail.gmail.com?utm_medium=email&utm_source=footer> >>> . >>> >> >> >> -- >> Thanks and Regards >> >> J. Ranga Bharath >> cell: 9110334114 >> >> -- >> 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 [email protected]. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/django-users/CAK5m314aNUsiyg%2BFyVhUCWio%3DFeubBYyj639vpReamT7%2BzxedQ%40mail.gmail.com >> <https://groups.google.com/d/msgid/django-users/CAK5m314aNUsiyg%2BFyVhUCWio%3DFeubBYyj639vpReamT7%2BzxedQ%40mail.gmail.com?utm_medium=email&utm_source=footer> >> . >> > -- > 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 [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CANvoF%2B9wV9vaAXV%3DqWp-FkB67F%2BxPBdc7UMypMuROD7V%3DSrzPA%40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CANvoF%2B9wV9vaAXV%3DqWp-FkB67F%2BxPBdc7UMypMuROD7V%3DSrzPA%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > Are you in the project directory? -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFcndAyME%3DYC3EBtvY1kPWrbOw2EWyfQkam_ndY6srQm9mQw2w%40mail.gmail.com.

