今天也遇到这个问题了,在stackoverflow[https://stackoverflow.com/questions/58557238/spyder-ide-fails-to-start-on-windows-10-with-python-3-8] 找到了解答。
更改这个文件...\Python38\Lib\site-packages\tornado\platform\asyncio.py
在其第36行后面添加一句
import sys
if sys.platform == 'win32':
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
即可解决。其中...是你装python的目录
以上引自 http://tieba.baidu.com/p/6488454087?red_tag=r2698216373
侵删。