This is likely a quick fix but I have run into a standstill and I hope you can help. Please bear with me, i'm not fluent in the command line environment.
I'm just beginning with using the Python framework named Flask. It has been successfully installed and I got up and running Hello World. The console was sending me logs while I was calling the program in the browser.
To quit out of the console logs, I pressed ctrl-z (^Z) ~~probably where the error starts?~~ and was prompted with:
[1]+ Stopped python hello.py
Now when I either a) attempt to run the program in the browser or b) run the script in command line python hello.py im thrown an error:
socket.error: [Errno 48] Address already in use
..and of course many other lines printed to the console.
A good answer should include what I did wrong and what I can do to fix it, and an accepted answer will also include why ;)