Created
November 7, 2018 11:41
-
-
Save shauns/453b076ec53e51ce518a0e374172a4ea to your computer and use it in GitHub Desktop.
Setting up Apache Superset on EC2 Ubuntu 18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get update | |
sudo apt-get install build-essential libssl-dev libffi-dev python-dev python-pip libsasl2-dev libldap2-dev | |
sudo apt-get install build-essential libssl-dev libffi-dev python3.6-dev python-pip libsasl2-dev libldap2-dev | |
pip install virtualenv | |
sudo apt install python3-venv | |
pyvenv venv | |
source venv/bin/activate | |
pip install --upgrade setuptools pip | |
pip install superset | |
pip install psycopg2 | |
fabmanager create-admin --app superset | |
superset db upgrade | |
superset load_examples | |
superset init | |
superset runserver -d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
pretty rough and ready...