Superset二次开发之部署问题汇总(持续更新ing)

1.ERROR: Could not build wheels for python-geohash, which is required to install pyproject.toml-based projects

# 缺少 geohash whl 文件, 下载地址 www.lfd.uci.edu/~gohlke/pythonlibs/

pip install geohash文件路径

2. AttributeError: module 'sqlparse.keywords' has no attribute 'FLAGS'

#sqlparse 目前版本0.4.4 需要降级0.4.3 即可解决

pip install sqlparse==0.4.3

3. Error! User already exists

重新初始化  superset inti

4. A Default SECRET_KEY was detected, please use superset_config.py to override it.
Use a strong complex alphanumeric string and use a tool to help

你可能感兴趣的:(Superset,Superset,BI,问题,安装部署)