Hello,
I’m trying to fix the port number for my streamlit app, so I can share it with my team once instead of having to resend a new link every time I rerun the app.
I fixed the port number with streamlit run file.py --server.port=80 when running the file.
However, when I try to rerun streamlit run file.py --server.port=80 I get “port is reserved”. Running streamlit run file.py only assigns a new port number to the app.
Is there a way to rerun the app (so the data is up to date) to the same port number (80)?
Many thanks!