File size: 551 Bytes
290f470
 
 
 
 
 
 
 
 
 
 
 
 
c3fe88d
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
title: Streamlit First Demo
emoji: 😻
colorFrom: purple
colorTo: pink
sdk: streamlit
sdk_version: 1.30.0
app_file: app.py
pinned: false
license: mit
---

Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference

Steps to run locally:
```
python3 -m venv env # To create an env
source env/bin/activate # To activate the env
pip3 install streamlit # Only the first time
pip3 freeze > requirements.txt # To export the libraries to a file
streamlit run app.py # To run the app
deactive # To leave the env
```