Jump to content

Address already in use ~ python


Recommended Posts

Ohai

Ehm, I'm trying to send Pokemon from the computer to my DS, right? I've used this to help me.

I've successfully transferred 2 Pokemon, Shaymin and Magmortar. I use this website here to get the files.

Now, I tried downloading a PKM file (Entei) and it kept giving me that blue screen with the connection error 0000. So, I closed Terminal (I use Mac OS X) and tried again. Now, I got a Pichu from where I downloaded Shaymin and Magmortar. It keeps telling me this;

Traceback (most recent call last):

File "./sendpkm.py", line 46, in <module>

initServ()

File "/Users/user/Desktop/sendpkm/pokehaxlib.py", line 92, in initServ

serv.bind(("0.0.0.0",80))

File "<string>", line 1, in bind

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

Could someone please tell me how to fix this. If you missed out, I am running on Mac OS X, using Python.

Link to comment
Share on other sites

Another Python script is probably still running in the background and prevents the new one from binding to port 80.

I don't know Mac OS X, but you should be able to kill every instance of Python running.

If it doesn't work, try to see what is using port 80 and terminate it.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...