Linux安装superset

新建文件夹 mkdir anaconda
下载anaconda安装文件 wget https://repo.continuum.io/archive/Anaconda2-4.4.0-Linux-x86_64.sh
赋予可执行权限 chmod +x ./naconda2-4.4.0-Linux-x86_64.sh
安装Anaconda到anaconda文件夹 ./naconda2-4.4.0-Linux-x86_64.sh anaconda
一路敲 yes
使配置生效 source ~/.bashrc
利用anaconda自带的conda命令安装虚拟环境 conda create -n superset python=3.6
source activate superset
yum install gcc-c++
yum install cyrus-sasl cyrus-sasl-devel cyrus-sasl-li
安装superset pip install superset= =0.28.1 -i https://pypi.douban.com/simple
安装0.28版本的superset,不然后续superset runserver会报错。
创建超级用户 fabmanager create-admin --app superset 会有提示
注:每次创建超级用户的时候都需要删掉系统中的.superset文件夹,这个文件夹下存在文件superset.db。
不然会出现如下错误:在这里插入图片描述
如果遇到以下问题 pip install pandas == 0.23.4
在这里插入图片描述
superset db upgrade
如果遇到下列问题 pip install flask==1.0.0
在这里插入图片描述
如果遇到下列问题 pip install SQLAlchemy= =1.2.18
在这里插入图片描述
superset load_examples
superset init
superset runserver
安装完成
参考文档
https://www.jianshu.com/p/e6ae8905833d
https://www.jianshu.com/p/b02fcea7eb5b
https://blog.csdn.net/qq_34299554/article/details/100123298

你可能感兴趣的:(Linux,superset)