socket.error: [Errno 48] Address already in use

You already have a process bound to the default port (8000). If you already ran the same module before, it is most likely that process still bound to the port. Try and locate the other process first: The command arguments are included, so you can spot the one running SimpleHTTPServer if more than one python process is active. You … Read more

socket.error: [Errno 48] Address already in use

You already have a process bound to the default port (8000). If you already ran the same module before, it is most likely that process still bound to the port. Try and locate the other process first: The command arguments are included, so you can spot the one running SimpleHTTPServer if more than one python process is active. You … Read more