Skip to content

Commit 48d8a54

Browse files
authored
Update Streamlit README.md
1 parent b41feff commit 48d8a54

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

14-Project-Streamlit/README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,14 @@ This guide explains how to install Streamlit on both Linux and Windows machines
3030

3131
2. **(Optional) Create and activate a virtual environment:**
3232
```bash
33-
python3 -m venv 14-Project-Streamlit-env
34-
source 14-Project-Streamlit-env/bin/activate
33+
python3 -m venv venv
34+
source venv/bin/activate
3535
```
36+
> Replace `venv` with any name you prefer for your virtual environment.
3637

3738
3. **Install Streamlit using pip:**
3839
```bash
39-
pip install 14-Project-Streamlit
40+
pip install streamlit
4041
```
4142

4243
---
@@ -45,9 +46,10 @@ This guide explains how to install Streamlit on both Linux and Windows machines
4546

4647
1. **(Optional) Create and activate a virtual environment:**
4748
```powershell
48-
python -m venv streamlit-env
49-
.\streamlit-env\Scripts\activate
49+
python -m venv venv
50+
.\venv\Scripts\activate
5051
```
52+
> Replace `venv` with any name you prefer.
5153

5254
2. **Install Streamlit using pip:**
5355
```powershell
@@ -72,7 +74,7 @@ This guide explains how to install Streamlit on both Linux and Windows machines
7274

7375
On both Linux and Windows, use the following command in your terminal:
7476
```bash
75-
14-Project-Streamlit run app.py
77+
streamlit run app.py
7678
```
7779

7880
3. **Access the app**

0 commit comments

Comments
 (0)