Search Results

by fjblau
Mon Dec 05, 2016 10:16 pm
Forum: Linux
Topic: Problem with Phidgets Bridge and socket.io
Replies: 1
Views: 4618

Re: Problem with Phidgets Bridge and socket.io

Fixed with this small change to transport.py from socket import error as SocketError try: from websocket import ( SSLError, WebSocketConnectionClosedException, WebSocketTimeoutException, create_connection) except ImportError: exit("""\ An incompatible websocket library is conflicting ...
by fjblau
Sun Dec 04, 2016 11:08 pm
Forum: Linux
Topic: Problem with Phidgets Bridge and socket.io
Replies: 1
Views: 4618

Problem with Phidgets Bridge and socket.io

I am trying to send data to socket.io server with the Phidget Python libraries. I keep getting this message: An incompatible websocket library is conflicting with the one we need. You can remove the incompatible library and install the correct one by running the following commands: yes | pip uninsta...