다른 명령
새 문서: === Streamlit 설치 === <source lang=python> pip install streamlit # 설치하기 </source> * 설치 확인 <source lang=python> streamlit hello # 설치 확인 </source> |
편집 요약 없음 |
||
(같은 사용자의 중간 판 하나는 보이지 않습니다) | |||
8번째 줄: | 8번째 줄: | ||
streamlit hello # 설치 확인 | streamlit hello # 설치 확인 | ||
</source> | </source> | ||
* pandas 설치(데이터처리시 주로 사용되므로 미리설치) | |||
<source lang=python> | |||
pip install pandas | |||
</source> | |||
[[category:python]] | |||
[[category:streamlit]] |
2025년 5월 20일 (화) 06:51 기준 최신판
Streamlit 설치
pip install streamlit # 설치하기
- 설치 확인
streamlit hello # 설치 확인
- pandas 설치(데이터처리시 주로 사용되므로 미리설치)
pip install pandas