0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

はじめに

Streamlit(ストリームリット)は、Pythonで書かれたオープンソースのフレームワークであり、データに基づいたウェブアプリケーションを簡単に構築することができるツールです。主にデータサイエンスや機械学習の分野で利用されており、データの可視化や分析、機械学習モデルの結果の共有などに適しています。

本記事ではGoogle Colab上でStreamlitを動かす方法について記載します。

Google Colab

プロジェクトを新規作成します。

image.png

Streamlit

Streamlitのインストール

!pip install streamlit

Streamlitのプログラムを作成

app.py
# app.pyというファイルに保存しても可
%%writefile app.py
import streamlit as st

def main():
    st.title('Hello Streamlit in Google Colab!')
    st.write('This is a sample Streamlit app running in Google Colab.')

if __name__ == '__main__':
    main()

Streamlitを起動する。

!streamlit run app.py & sleep 3 && npx localtunnel --port 8501

your url is : https://***と表示されるのでクリックします。
トンネルパスワードに自身のIPアドレスを入力し、クリックして送信します。

image.png

以下の様に表示されればOKです。あとはapp.pyの内容を修正することで様々なアプリを作成することができます。

image.png

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?