Although I do not have McAfee installed, as well as Windows 7 (both of which are usually problematic), I had a problem running the line "python manage.py runserver". I got the error "10013". The decision was moderately simple. To get started, run the line 'netstat -ano | findstr 127.0.0.1:8000 ', which checks your port line. If a command causes a message to appear, you should change the port you are using. This can be done by adding a four-digit number at the end of the original runserver command.
Example: python manage.py runserver 7000 In the above example, the port used was changed to port 7000.
user9680223
source share