https://github.com/reodinas/streamlit_leisure
프로젝트 진행 중 발생한 문제 해결 과정을 기록한 포스트입니다.
streamlit으로 차트를 구현하다가 위와 같은 에러가 발생했다.
찾아본 결과 위젯이 생성되면 구조에 따라 내부 키가 할당 되는데,
구조가 동일한 위젯은 같은 내부 키가 할당되어 DuplicateWidgetID 에러가 발생한다고 한다.
이 에러를 해결하기 위해서는 st.selectbox에 key를 지정해주면 된다.
'Debugging' 카테고리의 다른 글
git pull 에러 - error: Your local changes to the following files would be overwritten by merge (0) | 2022.12.23 |
---|---|
streamlit_kmeans 진행중 에러 - UnicodeDecodeError (0) | 2022.12.23 |
streamlit_kmeans 진행중 경고 - UserWarning (0) | 2022.12.23 |
streamlit_leisure 진행중 에러(3) - ValueError: Lengths must match to compare (0) | 2022.12.22 |
streamlit_leisure 진행중 에러(1) - ValueError: Lengths must match to compare (0) | 2022.12.20 |