This repo is a reference for the YouTube video -> π Quick Start: Set Up Your Streamlit Dev Environment in Under 5 Minutes!
Command to create conda Python environment.
conda create -n streamlit_env python=3.12.1
Command to activate you conda Python environment.
conda activate streamlit_env
Command to install packages in your conda Python environment
pip install streamlit
Command to list all Python packages installed in your conda Python environment. Be sure you have activated your conda environment.
pip list
Command to run your Streamlit app
streamlit run app.py