Reputation: 137
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).
Upvotes: 2
Views: 9338
Reputation: 1374
On Windows 10 powershell, we use Ctrl + Shift + C
;note that this is capital C here; for exiting after python manage.py runserver
and returning to prompt.
Upvotes: 0
Reputation: 23
Try CTRL + SHIFT + C instead of just CTRL + C as this will Capitalize the C.
Upvotes: 2
Reputation: 281
Ctrl-C works in most instances, you could also try Ctrl-D if it does not.
Upvotes: 0