ML_DL/MUJAKJUNG (무작정 시리즈)
[Streamlit] 앱 실행하기
swwho
2024. 10. 11. 19:28
728x90
반응형
Streamlit
Streamlit • A faster way to build and share data apps
Streamlit is an open-source Python framework for data scientists and AI/ML engineers to deliver interactive data apps – in only a few lines of code.
streamlit.io
- Python을 기반으로한 오픈소스 라이브러리
- Data Science, Machine Learning Model 등을 별도의 프론트엔드 지식 없이 시각화 및 공유할 수 있다.
Streamlit 설치 및 앱 실행
- pip 명령어로 간단한 설치 가능
pip install streamlit
- stream run test.py로 간단히 구동 가능
# test.py
import streamlit as st
st.title("Streamlit Test!")
streamlit run test.py