Skip to main content

Blog #13

Directory error occurred, cannot open manage.py after installing Django when I run the command"python manage.py runserver" and it shows "can't open file 'manage.py': [Errno 2] No such file or directory".

As I go further I got errors that's called coding, so now I got an error like this:

Exception in thread django-main-thread:
Traceback (most recent call last):
  File "C:\Users\Shubrajit Acharjee\AppData\Local\Programs\Python\Python38-32\lib\threading.py", line 932, in _bootstrap_inner      
    self.run()
  File "C:\Users\Shubrajit Acharjee\AppData\Local\Programs\Python\Python38-32\lib\threading.py", line 870, in run
    self._target(*self._args, **self._kwargs)
  File "C:\Users\Shubrajit Acharjee\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\utils\autoreload.py", line 53, in wrapper
    fn(*args, **kwargs)
  File "C:\Users\Shubrajit Acharjee\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\core\management\commands\runserver.py", line 118, in inner_run
    self.check(display_num_errors=True)
  File "C:\Users\Shubrajit Acharjee\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\core\management\base.py", line 392, in check
    all_issues = checks.run_checks(
  File "C:\Users\Shubrajit Acharjee\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\core\checks\registry.py", line 70, in run_checks
    new_errors = check(app_configs=app_configs, databases=databases)
  File "C:\Users\Shubrajit Acharjee\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\core\checks\urls.py", line 13, in check_url_config
    return check_resolver(resolver)
  File "C:\Users\Shubrajit Acharjee\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\core\checks\urls.py", line 23, in check_resolver
    return check_method()
  File "C:\Users\Shubrajit Acharjee\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\urls\resolvers.py", line 408, in check
    for pattern in self.url_patterns:
  File "C:\Users\Shubrajit Acharjee\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\utils\functional.py", line 48, in __get__
    res = instance.__dict__[self.name] = self.func(instance)
  File "C:\Users\Shubrajit Acharjee\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\urls\resolvers.py", line 589, in url_patterns
    patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
  File "C:\Users\Shubrajit Acharjee\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\utils\functional.py", line 48, in __get__
    res = instance.__dict__[self.name] = self.func(instance)
  File "C:\Users\Shubrajit Acharjee\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\urls\resolvers.py", line 582, in urlconf_module
    return import_module(self.urlconf_name)
  File "C:\Users\Shubrajit Acharjee\AppData\Local\Programs\Python\Python38-32\lib\importlib\__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
  File "<frozen importlib._bootstrap>", line 991, in _find_and_load
  File "<frozen importlib._bootstrap>", line 991, in _find_and_load
  File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 783, in exec_module
  File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  File "C:\Users\Shubrajit Acharjee\djangoproject\Hello\Hello\urls.py", line 21, in <module>
    path('', include('homeapp.urls') )
  File "C:\Users\Shubrajit Acharjee\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\urls\conf.py", line 34, in include
    urlconf_module = import_module(urlconf_module)
  File "C:\Users\Shubrajit Acharjee\AppData\Local\Programs\Python\Python38-32\lib\importlib\__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
  File "<frozen importlib._bootstrap>", line 991, in _find_and_load
  File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 779, in exec_module
  File "<frozen importlib._bootstrap_external>", line 916, in get_code
  File "<frozen importlib._bootstrap_external>", line 846, in source_to_code
  File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  File "C:\Users\Shubrajit Acharjee\djangoproject\Hello\homeapp\urls.py", line 8
    path("contact", views.services, name='homeapp5')
    ^
SyntaxError: invalid syntax

Reason: Not putting a comma in lines
  path("services", views.services, name='homeapp5')
  path("contact", views.services, name='homeapp5')
actual lines is:
  path("services", views.services, name='homeapp5'),
  path("contact", views.services, name='homeapp5')





Comments

Popular posts from this blog

Blog #12

Its 6:50PM in the evening. I started Django yesterday, and as expected problem arrived while I'm in PowerShell for preparing Django. However, I solved it using commands like pip install Django & pip install Django --upgrade(tutorial by code with harry youtube videos), and after that error occurred: pip is not recognized and I again download python from its official website and the error was solved hopefully. After that, I created a folder djangoproject and go to vs code terminal and run a command "django-admin startproject <newfoldername>",  but showed me "django-admin startproject hello django-admin : the term 'django-admin' is not recognized as the name of a cmdlet function script file or operable program. check the spelling of the name or if a path was included verify that the path is correct and try again."   Reason of this error is because of the file path/directory in Powershell. Its needs to change.  So my first approach was to go to adm...

Blog #2

Good morning Humans! Its 10:56 AM in the morning, I just wake up and thinking what to do today. Today I am gonna learn flask chapter I.e. basis app structure and templates and do a little bit of coding. Make some files to learn Github after completing flask chapters. Easy enough for today.