elliotforbes / realtime-chat-python

10 stars 7 forks source link

Module 'socketio' has no attribute 'AsyncServer'. #1

Open arushi-08 opened 6 years ago

arushi-08 commented 6 years ago

In server.py, socketio and aiohttp modules weren't found and after pip installing, I'm still getting more errors at this step: sio = socketio.AsyncServer() AttributeError: module 'socketio' has no attribute 'AsyncServer' How do I sort out this issue?

SteevieB commented 1 year ago

To whom it might help: You need to install the right package... It's called python-socketio - I am guessing you installed socketio instead.

pip uninstall socketio
pip install python-socketio

Cheers