메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

Streamlit 설치: 두 판 사이의 차이

데브카페
새 문서: === 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

Comments