官网地址:http:///

github:https:///apache/incubator-superset/
两种安装方式之前,建议先将linux的yum数据源改成aliyun的
方式就麻烦各位看下其他文章了
docker安装方式
git clone https:///apache/incubator-superset/
cd incubator-superset
# you can run this command everytime you need to start superset now:
docker-compose up
pip安装方式
# Install superset
pip install apache-superset

# Initialize the database
superset db upgrade

# Create an admin user (you will be prompted to set a username, first and last name before setting a password)
$ export FLASK_APP=superset
flask fab create-admin

# Load some data to play with
superset load_examples

# Create default roles and permissions
superset init

# To start a development web server on port 8088, use -p to bind to another port
superset run -p 8088 --with-threads --reload --debugger