import socketio - ValueError: signal only works in main thread

I'm trying python-socketio in my local machine but I can't use it. Just importing it already gives me an error.

pip install "python-socketio[client]"

Successfully installed python-socketio-4.3.1

import socketio

Just importing socketio gives me this error:

ValueError: signal only works in main thread

Upvotes: 0

Views: 337

Answers (1)

Sai
Sai

Reputation: 235

pip install -U socketIO-client --user

try using this

Upvotes: 1

Related Questions