https://github.com/dataprofessor/multi-page-app
https://github.com/dataprofessor/multi-page-app
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/dataprofessor/multi-page-app
- Owner: dataprofessor
- Created: 2021-01-28T11:14:22.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-28T11:49:15.000Z (over 5 years ago)
- Last Synced: 2025-04-05T07:41:34.476Z (over 1 year ago)
- Language: Python
- Size: 11.7 KB
- Stars: 55
- Watchers: 1
- Forks: 61
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# multi-page-app
# Watch the tutorial video
[How to Make a Multi-Page Web App | Streamlit #16](https://youtu.be/nSw96qUbK9o)
# Demo
Launch the web app:
[](https://share.streamlit.io/dataprofessor/multi-page-app/main/app.py)
# 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](https://github.com/dataprofessor/multi-page-app/archive/main.zip) and unzip as your working directory.
### Launch the app
```
streamlit run app.py
```
