I\'ve installed django rest framework using pip install djangorestframework
yet I still get this error when I run \"python3 manage.py sycndb\":
When using a virtual environment like virtualenv
without having django-rest-framework installed globally you might as well have the error.
The solution would be:
activate the environment first with {{your environment name}}/bin/activate
for Linux or {{your environment name}}/Scripts/activate
for Windows
and then run the command again.