11👍
✅
According to documentation, you need to call it as ./manage.py shell+
.
Probably you’ve mixed up this command with shell_plus
from django-extensions
?
48👍
-
Make sure you have installed
django-extensions
.pip install django-extensions
-
Add
django_extensions
(note the underscore between) to theINSTALLED_APPS
list insettings.py
file of your project.
- What is the difference between the create and perform_create methods in Django rest-auth
- Background processing in Django without Celery
- Django can't access raw_post_data
Source:stackexchange.com