I am trying to run my Django application using runserver_plus as I am using an SSL certificate to create HTTPS connections to the backend. In order to do so, I have done the following:
- pip install django_extensions
- Installed Django extensions to the project but include "django_extensions" in the "INSTALLED_APPS" list in the settings.py file.
- pip install Werkzeug
- python -m pip freeze (to make sure everything has been installed correctly within the venv)
- ran ./manage.py to check the available commands (to make sure Django extensions is working as expected)
However, I get the following error:
CommandError: Werkzeug is required to use runserver_plus.
although everything has been installed properly and all checks/re-installs have been made. Also, it must be noted that I updated Django, django_extensions, and Werkzeug to the latest versions available.