Skip to main content

Quickstart Apache Superset in less than 2 minutes

Tutorial to follow along

To quickstart apache superset we will be using docker and git. Lets assume you have git and docker installed and we will proceed further. As we are using docker only difference will be where you run your command if os changes.

  • For Windows PowerShell
  • For Linux and Mac terminal
  1. We need to clone Superset github repository using git

    git clone --branch 4.1.2 --depth 1 https://github.com/apache/superset
  2. Once cloned, lets dive inside superset directory using

    cd superset
  3. If you want you can change configuration using modifying superset_config.py present in docker/pythonpath_dev/superset_config.py

    I will be skipping this part as timer of 2 minute is ticking off 😜

  4. Finally lets quickly start the docker with docker-compose-image-tag.yml using following command

    docker compose -f docker-compose-image-tag.yml up
  5. Wait till it loads and then move to http://localhost:3000/ credentials are

    username: admin
    password: admin

Superset is up and running in less than 2 minutes!!