File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,13 +30,14 @@ This guide explains how to install Streamlit on both Linux and Windows machines
3030
31312. ** (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
37383. ** 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
46471. ** (Optional) Create and activate a virtual environment:**
4748 ` ` ` powershell
48- python -m venv streamlit-env
49- .\s treamlit-env \S cripts\a ctivate
49+ python -m venv venv
50+ .\v env \S cripts\a ctivate
5051 ` ` `
52+ > Replace ` venv` with any name you prefer.
5153
52542. ** 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
78803. ** Access the app**
You can’t perform that action at this time.
0 commit comments