superset AttributeError: 'EntryPoints' object has no attribute 'get'
时间: 2023-12-16 08:02:39 浏览: 245
superset安装配置流程.pdf
5星 · 资源好评率100%
这个错误通常是由于某些依赖项的版本不兼容而导致的。根据提供的引用,有两种可能的解决方法:
1.将markupsafe依赖的版本回退到2.0.1:
```shell
pip install markupsafe==2.0.1
```
2.卸载当前的cryptography版本并安装2.9.2版本,然后安装sqlalchemy-utils 0.36.6版本:
```shell
pip uninstall cryptography
pip install cryptography==2.9.2 -i https://pypi.douban.com/simple/
pip install sqlalchemy-utils==0.36.6 -i https://pypi.douban.com/simple/
```
阅读全文