You are on page 1of 24

1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.

ntu 22.04 Part 01 | by CA Amit Singh | …

Open in app Sign up Sign in

Search Write

Getting Started with Apache


Superset in 2023–24: Install
Apache Superset on Mac and
Ubuntu 22.04 Part 01
CA Amit Singh · Follow
Published in Free or Open Source software’s · 4 min read · Dec 28, 2023

In This Tutorial, You will learn How to Quickly Install Apache Superset in
MacOS & Ubuntu 22.04.

I suggest to Install Miniconda before Installing Apache Superset in MacOS &


Ubuntu 22.04, Also Install Developer tools in MacOS.

To Install Miniconda, You can visit official website at below links and find
the installer of python3.10 for MacOS and Linux, Kindly note that for MacOS
choose Apple Silicon or Intel Based pkg package.

https://docs.conda.io/projects/miniconda/en/latest/miniconda-other-
installer-links.html

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-0… 1/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

Here is the link for Apache Superset Repository

https://github.com/apache/superset

Here is the Link for Apache Superset Website

https://superset.apache.org/

Apache Superset Installation in MacOS and Ubuntu 22.04

For Ubuntu 22.04

OS Dependencies

Superset stores database connection information in its metadata database.


For that purpose, we use the cryptography Python library to encrypt
connection passwords. Unfortunately, this library has OS level
dependencies.

To Install Dependencies type below command in Ubuntu 22.04 and Press


Enter.

sudo apt-get install build-essential libssl-dev libffi-dev libsasl2-dev libldap2-


dev default-libmysqlclient-dev

Create and Activate Python Virtual Environment by typing these two


commands in MacOS and Ubuntu 22.04

Python -m vent supersetvenv

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-0… 2/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

. ./supersetvenv/bin/activate

MacOS

Ubuntu 22.04

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-0… 3/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

Now type below command to Install Apache Superset

pip install apache-superset

MacOS

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-0… 4/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

MacOS

Now type below command so that system recognise superset command

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-0… 5/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

export FLASK_APP=superset

For MacoOS

For Ubuntu 22.04

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-0… 6/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

Note that some configuration is mandatory for production instances of


Superset. In particular, Superset will not start without a user-specified value
of SECRET_KEY

You can generate a strong secure key with below command

openssl rand -base64 42

For MacOS

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-0… 7/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

For Ubuntu 22.04

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-0… 8/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

Once system generates secret key then add that key to config.py in superset
folder

For MacOS

For Ubuntu 22.04

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-0… 9/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

Now You need to Initialise the database, Type Command below command in
MacOS and Ubuntu 22.04

Superset db upgrade

MacOS

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-… 10/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

Ubuntu 22.04

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-… 11/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

Create an admin user in your metadata database (use `admin` as username


to be able to load the examples)

Type Below command in MacOS and Ubuntu 22.04 and press enter to create
admin user

superset fab create-admin

MacOS

Ubuntu 22.04

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-… 12/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

Now load some data with below command and Press Enter

superset load_examples

MacOS

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-… 13/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

Ubuntu 22.04

Create default roles and permissions with below command and Press Enter

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-… 14/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

Superset init

MacOS

Ubuntu 22.04

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-… 15/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

Now start superset by Typing below command and press enter, superset will
be available at http://localhost:5000

Superset run

MacOS

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-… 16/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

Ubuntu 22.04

Now login with your admin id and password

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-… 17/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

MacOS

Ubuntu 22.04

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-… 18/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-… 19/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

Apache Superset Apache Superset Install Data Visualization Open Source

No rights reserved by the author.

Written by CA Amit Singh Follow

11 Followers · Editor for Free or Open Source software’s

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-… 20/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

Qualified Chartered Accountant & Multi Technology Trainer

More from CA Amit Singh and Free or Open Source software’s

CA Amit Singh in Free or Open Source software’s CA Amit Singh in Free or Open Source software’s

GPT4All: A free-to-use, locally PrivateGPT: Interact with your


running, privacy-aware chatbot. N… documents using the power of GP…
Open-source LLM chatbots that you can run PrivateGPT is a production-ready AI project
anywhere. that allows you to ask questions about your…

6 min read · Dec 15, 2023 2 min read · Dec 15, 2023

CA Amit Singh in Free or Open Source software’s CA Amit Singh in Free or Open Source software’s

Apache Zeppelin Overview How to Install Apache Superset in


About Apache Zeppelin: Windows Subsystem for Linux-…
Learn to Install Apache Superset in Windows
Subsystem for Linux-Ubuntu 20.04

3 min read · Aug 1, 2020 4 min read · Jul 7, 2021

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-… 21/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

See all from CA Amit Singh See all from Free or Open Source software’s

Recommended from Medium

Mokkup.ai Nikhil Vemu in Mac O’Clock

Top 10 Power BI Dashboard The 11 craziest and most advanced


Examples in 2024 Apple shortcuts I’ve ever seen
Explore the top 10 Power BI dashboard Treat these like mini-apps, not shortcuts
examples, mastering visual data…

7 min read · Jan 4 · 11 min read · Jan 8

287 1.8K 26

Lists

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-… 22/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

ChatGPT prompts Coding & Development


34 stories · 972 saves 11 stories · 382 saves

data science and AI Icon Design


39 stories · 41 saves 36 stories · 200 saves

Isabelle Bittar in Microsoft Power BI Scott Galloway

Next-Level Dashboard Design With 2024 Predictions


Power BI’s New Card Visual With… Each year, we review/make predictions re the
Harnessing the Full Potential of Power BI’s past/coming year. Most years, we hit more…
Latest KPI Card Breakthrough

· 9 min read · Jan 8 11 min read · Jan 6

156 2 8.3K 114

Crizant Lai in CodeX Netflix Technology Blog in Netflix TechBlog

How I Setup My MacBook for Rebuilding Netflix Video


Development (2024 Version) Processing Pipeline with…

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-… 23/24
1/16/24, 7:25 PM Getting Started with Apache Superset in 2023–24: Install Apache Superset on Mac and Ubuntu 22.04 Part 01 | by CA Amit Singh | …

Unlocking the Potential of the Cutting-Edge This is the first blog in a multi-part series on
MacBook Setup in 2024. how Netflix rebuilt its video processing…

· 5 min read · Jan 1 9 min read · 5 days ago

1.6K 20 959 21

See more recommendations

https://medium.com/free-or-open-source-software/getting-started-with-apache-superset-in-2023-24-install-apache-superset-on-mac-and-ubuntu-22-… 24/24

You might also like