AttributeError: module ‘streamlit’ has no attribute ‘beta_set_page_config’
Hi,
which Streamlit Version are you using?
The paramter ‘beta_set_page_config’ is only available since Version 0.65.0
Maybe you need to upgrade your version:
pip install --upgrade streamlit
Best, Alex
Hi,
If you are using streamlit>=0.73.0
You have to change this
beta_set_page_config
→ set_page_config
Best
Thank you AdonaiVera, that works with me too.