Python依赖包相关问题记录(持续更新)
1. TypeError: SelectorEventLoop required, instead got: <uvloop.Loop running=True closed=False debug=False>
问题:Twisted版本过高
解决:将Twisted降级到20.3.0
pip install Twisted==20.3.0
2. ImportError: cannot import name 'performance_switch'
问题:缺少xycrypto
解决:安装xycrypto
pip install xycrypto
3. TypeError: Only timezones from the pytz library are supported
问题:tzlocal版本过高
解决:将tzlocal改为2.1
pip install tzlocal==2.1
4. AssertionError: ‘aiofiles’ must be installed to use FileResponse
问题:缺少aiofiles包