美文网首页
Superset教程

Superset教程

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

    相关文章

      网友评论

          本文标题:Superset教程

          本文链接:https://www.haomeiwen.com/subject/xxpiqltx.html