Linux最新的superset 环境搭建

官网地址:http://superset.apache.org/

github:https://github.com/apache/incubator-superset/
两种安装方式之前,建议先将linux的yum数据源改成aliyun的
方式就麻烦各位看下其他文章了
docker安装方式
git clone https://github.com/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
发布了831 篇原创文章 · 获赞 387 · 访问量 278万+

猜你喜欢

转载自blog.csdn.net/AinUser/article/details/103504162