How do I start tensorflow docker jupyter notebook

后端 未结 10 2088
时光说笑
时光说笑 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:51

    To get this to run under hyper-v. Perform the following steps:

    1) Create a docker virtual machine using https://blogs.msdn.microsoft.com/scicoria/2014/10/09/getting-docker-running-on-hyper-v-8-1-2012-r2/ this will get you a working docker container. You can connect to it via the console or via ssh. I'd put at least 8gb of memory since I'm sure this will use a lot of memory.

    2) run "ifconfig" to determine the IP address of the Docker VM

    3) On the docker shell prompt type:

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

    4) Connect to the Jupyter Workbench using http:/[ifconfig address]:8888/

提交回复
热议问题