Python Tornado 未实施错误解决方法
Python Tornado not implemented error workaround
这段代码:
'''tornado.ioloop.IOLoop.current().start()'''
引发未实现的错误,有任何解决方法吗?
如果您在获取和启动 IOLoop 之前执行此操作可能会有所帮助 asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
见https://www.tornadoweb.org/en/stable/index.html?highlight=windows#installation
这段代码: '''tornado.ioloop.IOLoop.current().start()'''
引发未实现的错误,有任何解决方法吗?
如果您在获取和启动 IOLoop 之前执行此操作可能会有所帮助 asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
见https://www.tornadoweb.org/en/stable/index.html?highlight=windows#installation