Streamlitの勉強

はじめに

Streamlitの勉強をするためのリポジトリです。

環境構築

1. 仮想環境の作成

$ python3 -m venv venv

2. 仮想環境の有効化

$ source venv/bin/activate

3. ライブラリのインストール

$ pip install -r requirements.txt
$ pip install --upgrade pip
$ pip freeze > requirements.txt

4. JupyterLabの起動

$ jupyter lab

5. Streamlitの起動

$ streamlit run app.py

参考