- 下载并安装Anaconda及创建虚拟环境
conda create -n environment_name python=3.7
activate your_env_name
- 安装 python-geohash
conda install -c conda-forge python-geohash -y
- 把OpenSSL 从1.1.1e 降级到 1.1.1d ,
conda install -c conda-forge openssl==1.1.1d -y
- 使用pip安装Apache Superset
pip install apache-superset
- 创建批处理脚本superset.cmd,保存在与python.exe相同目录下
@set FLASK_APP=superset
@python "%~dp0Scripts\superset" %*
- 初始化数据库
superset db upgrade
- 创建管理员用户
flask fab create-admin
- 导入例子数据
superset load_examples
- 创建默认角色和权限
superset init
- 运行superset
superset run -p 8088 --with-threads --reload --debugger
- 用你喜欢的浏览器打开 http://localhost:8088。
网友评论