18 lines
312 B
Markdown
18 lines
312 B
Markdown
# Steps to init
|
|
- just need to do this one time
|
|
|
|
```sh
|
|
python -m venv .venv
|
|
```
|
|
|
|
```sh
|
|
source .venv/bin/active
|
|
```
|
|
- To install streamlit
|
|
```
|
|
pip install streamlit CookieManager json os datetime requests
|
|
```
|
|
After the rust server is active, you can start running the python service
|
|
```
|
|
streamlit run main.py
|
|
``` |