multi-page-app

Watch the tutorial video

How to Make a Multi-Page Web App | Streamlit #16

How to Make a Multi-Page Web App | Streamlit #16

Demo

Launch the web app:

Streamlit App

Reproducing this web app

To recreate this web app on your own computer, do the following.

Create conda environment

Firstly, we will create a conda environment called multipage

conda create -n multipage python=3.7.9

Secondly, we will login to the multipage environement

conda activate multipage

Install prerequisite libraries

Download requirements.txt file

wget https://raw.githubusercontent.com/dataprofessor/ml-auto-app/main/requirements.txt

Pip install libraries

pip install -r requirements.txt

Download and unzip this repo

Download this repo and unzip as your working directory.

Launch the app

streamlit run app.py