Superset: command not found Superset: command not found flask flask

Superset: command not found


FYI now the PyPI package is apache-superset, so pip install apache-superset


From Superset documentation you should do this:

# Install supersetpip install superset# Create an admin user (you will be prompted to set username, first and last name before setting a password)fabmanager create-admin --app superset# Initialize the databasesuperset db upgrade# Load some data to play withsuperset load_examples# Create default roles and permissionssuperset init# Start the web server on port 8088, use -p to bind to another portsuperset runserver

Note: Only run this command in a virtual environment, fabmanager will not work well if you don't do this.


Go through the superset documentation here.

First I was trying without installing superset package in my virtual environment. After successful installation it's working fine.