赞
踩
`大数据工具之Superset,Apache Superset是一个开源的、现代的、轻量级BI分析工具,能够对接多种数据源、拥有丰富的图标展示形式、支持自定义仪表盘,且拥有友好的用户界面,十分易用。目前的版本是3.1.0 【地址(https://pypi.org/project/apache-superset/)】,WINDOWS下安装,可能遇到各种版本差异而无法使用,本文以个人经历与各位分享,为进一步推广完善Superset而一起进步。
处理器 13th Gen Intel® Core™ i5-13500H 2.60 GHz
机带 RAM 32.0 GB (31.7 GB 可用)
版本 Windows 11 家庭中文版
版本 22H2
操作系统版本 22621.3085
选择 3.9.18的原因是 apache-superset 3.1.0 Requires: Python ~=3.9
conda create -n supersetTest python=3.9.18
conda activate supersettest
cd C:\Users\super\anaconda3\envs\supersetTest
python.exe -m pip install --upgrade setuptools
轮子要下载到本地,比如到D:\Superset\。 轮子的下载地址:地址
pip install D:\Superset\python_geohash-0.8.5-cp39-cp39-win_amd64.whl
pip install D:\Superset\sasl-0.3.1-cp39-cp39-win_amd64.whl
pip install apache-superset
建立了一个superset_config.py ,放在C:\Users\super\anaconda3\envs\Superset39\ 目录
openssl rand -base64 42
产生一个随机安全码,
修改:superset_config.py 的SECRET_KEY;
修改:SQLALCHEMY_DATABASE_URI = ‘sqlite:///superset.db’;
set FLASK_APP=SUPERSET
superset db upgrade #更新数据库
superset fab create-admin #输入用户名、密码等
pip install Pillow
网站可以超时,不过不影响使用
superset load_examples
superset init
superset run -p 8088 --with-threads --reload --debugger
http://localhost:8088/login/
与各位分享,总体来看,过程还算顺利。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。