Skip to content

Instantly share code, notes, and snippets.

@shauns
Created November 7, 2018 11:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shauns/453b076ec53e51ce518a0e374172a4ea to your computer and use it in GitHub Desktop.
Save shauns/453b076ec53e51ce518a0e374172a4ea to your computer and use it in GitHub Desktop.
Setting up Apache Superset on EC2 Ubuntu 18
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
@shauns
Copy link
Author

shauns commented Nov 7, 2018

pretty rough and ready...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment