Why do I need to use beta_columns instead of columns at share.streamlit.io?
I guess share.streamlit.io has always the latest streamlit?
try:
col1,col2 = st.columns([1,3])
except:
col1,col2 = st.beta_columns([1,3])
Why do I need to use beta_columns instead of columns at share.streamlit.io?
I guess share.streamlit.io has always the latest streamlit?
try:
col1,col2 = st.columns([1,3])
except:
col1,col2 = st.beta_columns([1,3])
Hi @rcsmit
It would indeed. Unless you’ve locked it to a legacy version in your requirements.txt file?
Best,
Charly
This is my requirements file
scipy
matplotlib==3.2.2
numpy==1.18.1
pandas==1.1.3
seaborn
lmfit
imageio
tabulate
sklearn
gsheetsdb
Thanks @rcsmit
Have you added Streamlit in the requirements.txt as well?
If so, would you mind giving us the line for Streamlit, see if it’s locked to a specific version?
Thanks
Charly
Yes, that helped.
Quit strange though 
Thanks for you help