From 565432d954b50fc2df2ba811c871bf3f190842ec Mon Sep 17 00:00:00 2001 From: lasseedfast Date: Mon, 7 Oct 2024 17:49:58 +0200 Subject: [PATCH] Include installation instructions for Streamlit app --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4101a71..c8e1460 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,11 @@ A Streamlit example is provided in `example_streamlit_app.py` to demonstrate how ### Running the Streamlit App 1. Ensure you have installed the required packages and set up the environment variables as described in the Installation section. -2. Run the Streamlit app: +2. Install streamlit: + ```sh + pip install streamlit + ``` +3. Run the Streamlit app: ```sh streamlit run example_streamlit_app.py ```