安裝所需的依賴:
sudo apt-get install build-essential libssl-dev libffi-dev python-dev python-pip libsasl2-dev libldap2-dev libpcap-dev libpq-dev
安裝python:
sudo apt-get install python3.7
# 設(shè)置Python 3.7為默認(rèn)的命令:
sudo rm /usr/bin/python
sudo ln -s /usr/bin/python3.7 /usr/bin/python
# 卸載Python 3.7命令:
sudo apt-get remove python3.7
安裝python的virtualenv環(huán)境
# 安裝virtualenv
pip3 install virtualenv
# 創(chuàng)建名為venv的virtualenv環(huán)境
virtualenv venv
# 切換到venv環(huán)境
. ./venv/bin/activate
安裝superset
# 把pip跟setuptools更新到最新
pip3 install --upgrade setuptools pip
# 在virtualenv環(huán)境下使用pip來安裝superset
pip3 install superset
# 創(chuàng)建用戶欢峰,會(huì)提示你輸入用戶名粘室、姓氏弄匕、名字礼华、郵箱、密碼
fabmanager create-admin --app superset
# 初始化數(shù)據(jù)庫(kù)
superset db upgrade
# 加載一些demo數(shù)據(jù)到sqlite數(shù)據(jù)庫(kù)中進(jìn)行展示
superset load_examples
# 初始化superset
superset init
# 安裝postgresql支持
pip3 install psycopg2
# 安裝mysql支持
pip3 install mysqlclient
# 啟動(dòng)superset服務(wù),默認(rèn)端口是8088侨核,可以使用-p參數(shù)修改默認(rèn)端口
superset runserver
# postgres數(shù)據(jù)庫(kù)連接配置
postgresql+psycopg2://username:password@localhost:port/dbname
# mysql數(shù)據(jù)庫(kù)連接配置
mysql://username:password@localhost:port/dbname
可能遇到的問題
- 如果執(zhí)行
fabmanager create-admin --app superset
報(bào)錯(cuò),可能需要將pandas包的版本降為0.23.4
# 查看pandas版本
pip3 list | grep pandas
# 卸載pandas并重新安裝
pip3 uninstall pandas
pip3 install pandas==0.23.4
- 如果執(zhí)行
superset db upgrade
報(bào)錯(cuò)灌灾,可能需要將SQLAlchemy包的版本降為1.2
# 查看SQLAlchemy版本
pip3 list | grep SQLAlchemy
# 卸載SQLAlchemy并重新安裝
pip3 uninstall SQLAlchemy
pip3 install SQLAlchemy==1.2
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者