Whenever I start the Django development server, I would get this issue LiveReload exception: <urlopen error [Errno 61] Connection refused>
The server would still run and render my site but I cannot use the livereload module.
I tried uninstalling and reinstalling django-livereload but it does not help. In addition, when I try to run this command: python3 manage.py livereload. It said unknown command:'livereload'
Install by using below command:
Add
'livereload'to INSTALLED_APPSAdd
'livereload.middleware.LiveReloadScript'to MIDDLEWARE_CLASSES in settings.py fileStart the livereload server using below command:
Do above things and try if it solves