superset最新安装教程
时间: 2023-12-12 08:34:23 浏览: 127
superset安装配置流程.pdf
5星 · 资源好评率100%
以下是Superset最新版本(1.3.2)的安装教程:
1. 确保已经安装了Python 3.6+和pip。
2. 创建并激活一个虚拟环境(可选)。
3. 安装Superset:
```shell
pip install apache-superset
```
4. 初始化数据库:
```shell
superset db upgrade
```
5. 创建管理员账户:
```shell
export FLASK_APP=superset
flask fab create-admin
```
6. 加载示例数据(可选):
```shell
superset load_examples
superset init
```
7. 启动Superset:
```shell
superset run -p 8080 --with-threads --reload --debugger
```
这将在本地的8080端口启动Superset,并开启多线程和自动重载功能。
如果你想在生产环境中运行Superset,建议使用gunicorn或uwsgi等WSGI服务器。
阅读全文