I\'ve installed django rest framework using pip install djangorestframework yet I still get this error when I run \"python3 manage.py sycndb\":
I've faced the same problem, followed these instructions and it worked for me:
python -m pip install --upgrade pip (to upgrade pip)pip3 install djangorestframeworkAdded rest_framework as first app:
INSTALLED_APPS = [
'rest_framework',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
#apps
'apps.endpoints',
]