streamlit hello
version
$ .venv/bin/streamlit --version Streamlit, version 1.41.1
install & hello
python3 -m venv .venv .venv/bin/pip install streamlit
hello.py を作成
$ cat hello.py
import streamlit as st
st.title("Hello World!")
run
.venv/bin/streamlit run hello.py