https://github.com/dataprofessor/streamlit_navbar
https://github.com/dataprofessor/streamlit_navbar
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/dataprofessor/streamlit_navbar
- Owner: dataprofessor
- Created: 2021-10-03T06:29:55.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-10-03T06:43:33.000Z (almost 5 years ago)
- Last Synced: 2025-04-05T07:41:26.519Z (over 1 year ago)
- Language: Python
- Size: 4.88 KB
- Stars: 33
- Watchers: 1
- Forks: 20
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# streamlit_navbar
# Watch the tutorial video
[Is it Possible to Add a Navigation Bar to Streamlit Apps? | Streamlit #29](https://youtu.be/hoPvOIJvrb8)
# Demo
Launch the web app:
[](https://share.streamlit.io/dataprofessor/streamlit_navbar/main/app_navbar.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 *streamlit_navbar*
```
conda create -n streamlit_navbar python=3.7.9
```
Secondly, we will login to the *streamlit_navbar* environment
```
conda activate streamlit_navbar
```
### Install prerequisite libraries
Download requirements.txt file
```
wget https://raw.githubusercontent.com/dataprofessor/streamlit_navbar/main/requirements.txt
```
Pip install libraries
```
pip install -r requirements.txt
```
### Download and unzip contents from GitHub repo
Download and unzip contents from https://github.com/dataprofessor/streamlit_navbar/archive/main.zip
### Launch the app
```
streamlit run app_navbar.py
```
