I am attempting to get the open-dis python package running correctly on my machine. I am running Python 3.8.
Using pip, I compile the package from it's source as so: pip install .
After that, as instructed in the documentation. I run python dis_receiver.py
I am immediately met with this error:
Created UDP socket 3001
Traceback (most recent call last):
File "dis_receiver.py", line 40, in <module>
recv()
File "dis_receiver.py", line 27, in recv
data = udpSocket.recv(1024) # buffer size in bytes
socket.timeout: timed out
I don't really understand why this is happening given that I have changed absolutely nothing about the documented example process. Any idea why this would be happening?