ModuleNotFoundError: No module named 'django_filters' in Python django framwork

when I run this command in vs code: python manage.py runserver

I got the error: ModuleNotFoundError: No module named 'django_filters'

I have already put 'django_filters' in installed app and the server is showing that Module is not found, what could be the instance solution to it if any stackoverflower is know to it please share your knowledge, Thank you in advance !

I have already run the command: pip install django-filter

INSTALLED_APPS = [ .... 'django_filters', ] enter image description here

Вернуться на верх