From 62dda60c126481ff8e0ea35ddbbd90eb6046179f Mon Sep 17 00:00:00 2001 From: xiangjinyu Date: Thu, 13 Feb 2025 10:07:33 +0800 Subject: [PATCH] add pip streamlit README.md --- examples/spo/README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/examples/spo/README.md b/examples/spo/README.md index 28e6f58fc..08ed6f804 100644 --- a/examples/spo/README.md +++ b/examples/spo/README.md @@ -130,9 +130,15 @@ #### Option 2: Command Line Interface #### Option 3: Streamlit Web Interface -For a more user-friendly experience, you can use the Streamlit web interface to configure and run the optimizer: +For a more user-friendly experience, you can use the Streamlit web interface to configure and run the optimizer. +First, install Streamlit: ```bash +pip install "streamlit~=1.42.0" +``` + +Then run the web interface: +```bash python -m streamlit run metagpt/ext/spo/app.py ```