python 报错 module ‘asyncio‘ has no attribute ‘run‘

原因是:python的版本过低
解决办法:

pip3 install nest_asyncio

import nest_asyncio
nest_asyncio.apply()

你可能感兴趣的:(安装,python)