I am working on Django project where I need to create a form for inputs. I tried to import reverse from django.core.urlresolvers. I got an error:
line 2, in from django.core.urlresolvers import reverse ImportError: No module named …
I've installed django rest framework using pip install djangorestframework yet I still get this error when I run "python3 manage.py sycndb":
ImportError: No module named 'rest_framework'
I'm using python3, is this my issue?
I'm at wit's end. After a dozen hours of troubleshooting, probably more, I thought I was finally in business, but then I got:
Model class django.contrib.contenttypes.models.ContentType doesn't declare an explicit app_label
There is SO LITTLE …