streamlit app sourced from youtube somewhere, link to source and credit to follow
steps to create a streamlit instance on AWS ec2
sudo apt update
sudo apt-get update
sudo apt upgrade -y
sudo apt install git curl unzip tar make sudo vim wget -y
git clone "Your-repository"
sudo apt install python3-pip
pip3 install -r requirements.txt
may need to use --break-system-packages
#Temporary running
python3 -m streamlit run main.py
#Permanent running
nohup python3 -m streamlit run main.py
Note: Streamlit runs on this port: 8501