How do I start tensorflow docker jupyter notebook

后端 未结 10 2084
时光说笑
时光说笑 2020-12-07 09:15

I\'ve installed the tensorflow docker container on an ubuntu machine. The tensorflow docker setup instructions specify:

docker run -it b.gcr.io/tensorflow/t         


        
10条回答
  •  一个人的身影
    2020-12-07 09:49

    These steps worked for me if you are a total docker noob using a windows machine.

    Versions: Windows 8.1, docker 1.10.3, tensorflow r0.7

    1. Run Docker Quickstart Terminal
    2. After it is loaded, note the ip address. If you can't find it use this docker-machine ip and make a note. Lets call it 'ip address'. Will look something like this: 192.168.99.104 (I made up this ip address)
    3. Paste this command on the docker terminal:

      docker run -p 8888:8888 -p 6006:6006 b.gcr.io/tensorflow/tensorflow.

      If you are running this for the first time, it will download and install the image on this light weight vm. Then it should say 'The Jupyter notebook is running at ....' -> This is a good sign!

    4. Open your browser at: :8888. Eg. 192.168.99.104:8888/
    5. Hopefully you can see your ipython files.

提交回复
热议问题