0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Docker上でのStreamlit環境構築【Windows 10】

Last updated at Posted at 2021-11-25

はじめに

Windows環境で、数値計算の環境の事情(例えばcvxpyとか環境構築がめんどっちいとかの事情があります)からLinuxを使用したいことがあります。そのような場合、Dockerを用いるかと思います。しかしながら、streamlitをDockerのコンテナで実行した際、Webブラウザの見方があまり記事としてなかったので拙いながらもまとめてみます。

環境

  • Windows 10
  • Docker for Windows
  • Python
    • streamlit

コンテナの作成

下記のコマンドを実行しコンテナを作成する。

$ docker run -it -p 8501:8501 -v <パス>:/home/jovyan/work --name unko jupyter/datascience-notebook  /bin/bash

image.png

Streamlitの実行

試しに下記のPythonファイルを実行することを考えます。

import streamlit as st
st.title("Hello World !")

ターミナルでPythonファイルを実行してみます。

$ pip install streamlit
$ python -m streamlit run hello.py

それではブラウザで結果を表示してみましょう。

image.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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?