ModuleNotFoundError: No module named 'playgrounddjango'

Hello. I’m following the django course from Mosh and I have recently bought the full course, but I am facing one issue 24 minutes into the video.

After using command ‘python manage.py startapp playground’ I save the project and everything is in check.
However, right after I enter ‘playground’ in INSTALLED_APPS list in settings.py and save all, I get an error saying:

C:\Users\Milky\Desktop\storefront\storefront\settings.py changed, reloading.
Watching for file changes with StatReloader
Exception in thread django-main-thread:
Traceback (most recent call last):
File “C:\Users\Milky\AppData\Local\Programs\Python\Python310\lib\threading.py”, line 1009, in _bootstrap_inner
self.run()
File “C:\Users\Milky\AppData\Local\Programs\Python\Python310\lib\threading.py”, line 946, in run
self._target(*self.args, **self.kwargs)
File “C:\Users\Milky.virtualenvs\storefront-DXF9kM2l\lib\site-packages\django\utils\autoreload.py”, line 64, in wrapper
fn(*args, **kwargs)
File “C:\Users\Milky.virtualenvs\storefront-DXF9kM2l\lib\site-packages\django\core\management\commands\runserver.py”, line 110, in inner_run
autoreload.raise_last_exception()
File “C:\Users\Milky.virtualenvs\storefront-DXF9kM2l\lib\site-packages\django\utils\autoreload.py”, line 87, in raise_last_exception
raise exception[1]
File "C:\Users\Milky.virtualenvs\storefront-DXF9kM2l\lib\site-packages\django\core\management_init
.py", line 375, in execute
autoreload.check_errors(django.setup)()
File “C:\Users\Milky.virtualenvs\storefront-DXF9kM2l\lib\site-packages\django\utils\autoreload.py”, line 64, in wrapper
fn(*args, **kwargs)
File "C:\Users\Milky.virtualenvs\storefront-DXF9kM2l\lib\site-packages\django_init
.py", line 24, in setup
apps.populate(settings.INSTALLED_APPS)
File “C:\Users\Milky.virtualenvs\storefront-DXF9kM2l\lib\site-packages\django\apps\registry.py”, line 91, in populate
app_config = AppConfig.create(entry)
File “C:\Users\Milky.virtualenvs\storefront-DXF9kM2l\lib\site-packages\django\apps\config.py”, line 224, in create
import_module(entry)
File "C:\Users\Milky\AppData\Local\Programs\Python\Python310\lib\importlib_init
.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File “”, line 1050, in _gcd_import
File “”, line 1027, in _find_and_load
File “”, line 992, in _find_and_load_unlocked
File “”, line 241, in _call_with_frames_removed
File “”, line 1050, in _gcd_import
File “”, line 1027, in _find_and_load
File “”, line 992, in _find_and_load_unlocked
File “”, line 241, in _call_with_frames_removed
File “”, line 1050, in _gcd_import
File “”, line 1027, in _find_and_load
File “”, line 1004, in _find_and_load_unlocked
ModuleNotFoundError: No module named ‘playgrounddjango’

I have tried everything, reinstalled vscode and python itself, though it seems it’s a problem in something else. Any clues?