import streamlit as st
st.title("helo st")
print("test console")
when i start to run streamlit app with “streamlit run xxx.py”, the expected result is that “test console” will showed up in the startup console
but it didn’t works
the same code was tested on windows and it worked well
finally i got the reason why i didn’t see the print
actually the streamlit code works well on linux
key reason is that i need to understand the lifecycle of the streamlit begins with the page load
i didn’t see the print in my demo was that i didn’t trigger the page load.
now it works and it should be always works
thanks all for the reply! hope u all have a good new year!