728x90
streamlit run ~~.py 을 실행하니 다음과 같은 에러가 뜬다
ModuleNotFoundError: No module named 'streamlit.cli'
sreamlit 라이브러리가 설치된 폴더로 이동하고 열어준다
나는 여기로 이동 /opt/anaconda3/envs/cho3_9/bin/streamlit
<기존>
from streamlit.cli import main
<변경>
from streamlit.web.cli import main
streamlit.web.cli 로 바꿔주면 된다
728x90
'데이터 분석 > [Python] Troubleshooting' 카테고리의 다른 글
AttributeError: st.session_state has no attribute “key”. Did you forget to initialize it? (0) | 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 |