Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to Connect to Tensorflow Jupyter Notebook in windows 10

I am getting following error message whenever I try to fire up my jupyter notebook for tensorflow.

Browser Error

enter image description here

Following is my status of docker in which I have got

  1. Docker machines running
  2. Docker Images Downloaded

enter image description here

I used Docker image ID to run it in docker

enter image description here

I wonder why still my jupyter notebook is NOT getting fired although it is running properly in bash?

Updates(Setting in VirtualBox)

enter image description here

like image 233
Naseer Avatar asked Oct 29 '22 18:10

Naseer


1 Answers

The problem here is that the container does not expose a port. You need to explicitly map the port to the host operating system:

docker run -p 8888:8888 -p 6006:6006 -t -i b.gcr.io/tensorflow/tensorflow ./run_jupyter.sh`
like image 157
fabrizioM Avatar answered Nov 10 '22 06:11

fabrizioM