Skip to content Skip to sidebar Skip to footer

Oserror: [winerror 10022] An Invalid Argument Was Supplied - Windows 10 Python

I am currently learning python, coming from java, and stumbled into an error I can't find the answer to. I am using the latest python version on Windows 10, though I assume the tut

Solution 1:

The socket does not have an address until it is either bound or data is sent. Bind the socket before calling connection.recvfrom(65536) using connection.bind((YOUR_IP, PORT)).


Post a Comment for "Oserror: [winerror 10022] An Invalid Argument Was Supplied - Windows 10 Python"