728x90
import streamlit as st
if 'key' not in st.session_state:
st.session_state['key'] = 'value'
# Update session state
st.session_state['key'] = 'value4'
# Read session state
st.write(st.session_state['key'])
해당 코드를 .py 로 저장하기(파일명 예시 : streamlit_app.py)
터미널에서 streamlit 실행하기
streamlit run streamlit_app.py
728x90
'데이터 분석 > [Python] Troubleshooting' 카테고리의 다른 글
ModuleNotFoundError: No module named 'streamlit.cli' (3) | 2023.11.14 |
---|---|
[python] urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] (0) | 2023.08.29 |
[python] anaconda ssl error (0) | 2023.08.22 |
jupyter notebook kernerl error 해결방법 (0) | 2023.04.18 |
CondaHTTPError: HTTP 000 CONNECTION FAILED (0) | 2022.04.07 |