neuron
neuron copied to clipboard
Error 10038
i run this in linux and it runs perfect but in windows 7 it doesnt work and gived me scoket error 10038 how can i fix this?
Are you sure u translated all linux codes to windows? while 1: socket_list = [sys.stdin, s] read_sockets, write_sockets, error_sockets = select.select(socket_list , [], []) this is linux code
Try while 1: Socket_list = [socket.socket(), s] Read_sockets, write_sockets, error_sockets = select.socket(socket_list , [], [])
Once you have translated everyhing it should have no errors showing but u might run into isue that im having :(