> Terminate processes on TCP 5037 then try again. I don't know what that means
If you're running linux, you can find out what is running on port 5037 with:
lsof -i:5037
Once you find out the process id (PID) using the above command, you can kill that process with:
kill 1234
assuming 1234 is the PID