다른 명령
새 문서: === Streamlit 설치 === <source lang=python> pip install streamlit # 설치하기 </source> * 설치 확인 <source lang=python> streamlit hello # 설치 확인 </source> |
|||
7번째 줄: | 7번째 줄: | ||
<source lang=python> | <source lang=python> | ||
streamlit hello # 설치 확인 | streamlit hello # 설치 확인 | ||
</source> | |||
* pandas 설치(데이터처리시 주로 사용되므로 미리설치) | |||
<source lang=python> | |||
pip install pandas | |||
</source> | </source> |
2024년 10월 16일 (수) 08:38 판
Streamlit 설치
pip install streamlit # 설치하기
- 설치 확인
streamlit hello # 설치 확인
- pandas 설치(데이터처리시 주로 사용되므로 미리설치)
pip install pandas