How to remove open streamlit app in browser

Hello, I would like to know is there a way once I run streamlit run someapp.py to not get any output.

At the moment I am getting you can now view your streamlit app in your browser

I have tried various methods such as
[server]
openBrowser = false

running in headless or piping that prompt elsewhere but it did not help, I do not see any settings in the documentation Configuration - Streamlit Docs

So is there a way to just run it and not get any output whatsoever?

Try running this in your terminal to suppress all output:

For Unix/Linux system:

streamlit run someapp.py > /dev/null 2>&1

For Windows:

streamlit run someapp.py > nul 2>&1

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.