LoginSignup
0
0

More than 1 year has passed since last update.

streamlit を使ってみる

Last updated at Posted at 2021-08-13

目的

streamlit を試してみる

動機

streamlit を試してたい

環境構築

  • 仮想環境を構築
    • そうでなければ権限の問題で streamlit コマンドを叩けない
    • 権限問題は後日どこかで調べておく
  • streamlit を pip install
pip install streamlit

テスト

  • 以下のコードを書く
# coding: utf-8
import streamlit as st
st.title('My App')
  • 実行
> streamlit run .\test_stramlit.py
  • アクセス
http://localhost:8501
  • 結果

キャプチャ1.PNG

参考文献

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0