arpanghosh130883 / Deploy-Streamlit-app-on-EC2-instance

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to Deploy Streamlit app on EC2 instance

1. Login with your AWS console and launch an EC2 instance

2. Run the following commands

Note: Do the port mapping to this port:- 8501

sudo apt update
sudo apt-get update
sudo apt upgrade -y
sudo apt install git curl unzip tar make sudo vim wget -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
#Temporary running
python3 -m streamlit run app.py
#Permanent running
nohup python3 -m streamlit run app.py

Note: Streamlit runs on this port: 8501

About

License:MIT License


Languages

Language:Python 100.0%