Django - REST Framework Basics
You wrote this in settings.py:
But you get an error: "ModuleNotFoundError: No module named 'rest_framework'". What is the likely cause?
INSTALLED_APPS = [
'django.contrib.admin',
'rest_framework',
'myapp',
]But you get an error: "ModuleNotFoundError: No module named 'rest_framework'". What is the likely cause?
