K.MIURA@OUC

The special secret of making dreams come true can be summarized in four C’s. They are Curiosity, Confidence, Courage, and Constancy. –Walt Disney

Docker上でJupyterを展開する

[基本環境] Debian 10.3.0 (amd64) Docker 19.03.8 [参考サイト] EC2(Ubuntu 18.04 LS)にJupyter Notebookをインストールしてみた [注意] Docker環境の構築や他のサイトを読んで、Docker環境を構築していること 本記事は、Jupyter NotebookをWEBブラウザで確認するまでの手続きである [Dockerコンテナの展開] docker pull debian:stable docker run -itd --privileged -p 8888:8888/tcp -p 8888:8888/udp --name jupyter debian:stable docker exec -it jupyter /bin/bash [コンテナ(jupyter)内での手続き] apt update apt upgrade apt install git apt install curl apt install bzip2 apt install vim git clone https://github. Read more →