Skip to content

Instantly share code, notes, and snippets.

@sankars
Created September 4, 2019 08:56
Show Gist options
  • Save sankars/e84ef6ffa5de68646c63ea695b7b637d to your computer and use it in GitHub Desktop.
Save sankars/e84ef6ffa5de68646c63ea695b7b637d to your computer and use it in GitHub Desktop.
Install Superset in Anaconda
### Install Superset(0.28.1)
conda create -n superset python=3.6
conda activate superset
pip install pandas==0.23.4
pip install flask==1.0.0
pip install sqlalchemy==1.2.18
pip install superset==0.28.1
superset db upgrade
export FLASK_APP=superset
flask fab create-admin
superset load_examples
superset init
gunicorn \
-w 3 \
-k gevent \
--timeout 120 \
-b 0.0.0.0:12000 \
--limit-request-line 0 \
--limit-request-field_size 0 \
--statsd-host localhost:8125 \
superset:app &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment