python3 -m venv venv
source venv/bin/activate
python3 -m pip install -r requirements.txt
streamlit run app.py
Run the application in background using nohup
nohup streamlit run app.py > output.log 2>&1 &cat output.logThis will show all the running processes
ps -ef | grep streamlitkill -9 PID
For example
kill -9 1234