LoginSignup
0
0

More than 3 years have passed since last update.

TensorFlowを動かすためのJupyterのDocker環境

Posted at

環境

MacBookPro
OS:Catalina

内容

DockerHubからimageをPull

$ docker pull tensorflow/tensorflow:latest-jupyter

imageからコンテナを起動
ホスト側で8888ポートを使用していたので、私は、8889:8888で行った。

$ docker run -it -p 8889:8888 --name tf_test tensorflow/tensorflow:latest-jupyter

上記実行後、表示されたURLにアクセスしてJupyterのページが表示されていればOK。(8888番ポートを使用していなければ、置き換える)

参考サイト
https://www.tensorflow.org/install/docker?hl=ja

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