Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to exit "python manage.py runserver" in windows

How can I exit from the command line after executing:

python manage.py run server 8080

I already tried Ctrl+C and Ctrl+Z but neither worked. Using gitbash instead of cmd changed nothing.

I am using Windows (64 bit).

A Screenshot from my command line

like image 620
Jesse Luo Avatar asked Mar 03 '26 02:03

Jesse Luo


2 Answers

Ctrl + Break is the magic combination if Ctrl-C doesn't work.

like image 119
thebjorn Avatar answered Mar 04 '26 15:03

thebjorn


Try CTRL + SHIFT + C instead of just CTRL + C as this will Capitalize the C.

like image 33
Jim Avatar answered Mar 04 '26 15:03

Jim