1 Answers1

0

I see now that the problem is that you're using Python 3.8, following the previous threads try the following:

  1. Locate and open the asyncio.py file. In my case it's in C:\Users[USERNAME]\AppData\Local\Programs\Python\Python38-32\Lib\site-packages\tornado\platform\asyncio.py
  2. After the lineimport asyncio add the following:
import sys

if platform == "win32":               
    asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
Gorlomi
  • 515
  • 2
  • 11