mkdir Streamlit-wrk
cd Streamlit-wrk
python -m venv venv
source venv/bin/activate # For Linux/Mac
venv\Scripts\activate # For Windows
If there's any Error in Activating Virtual Environment in Windows then use below code (Temporary fix) and run the venv\Scripts\activate
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
pip install streamlit
pip install pandas
pip install numpy