By default,
a notebook server runs locally at 127.0.0.1:8888 and
is accessible only from localhost.
You may access the notebook server from the browser using http://127.0.0.1:8888.
Examples:
Usage in Docker:
#docker run --name tf -it -p 8888:8888 -v D:/docker:/data tensorflow/tensorflow
Access By browser:
http://localhost:8888/
Others:
The Jupyter notebook web application is based on a server-client structure.
The notebook server uses a two-process kernel architecture based on ZeroMQ,
as well as Tornado for serving HTTP requests.

本文介绍 Jupyter Notebook 服务器的默认配置及其访问方式。通常情况下,该服务器运行在本地地址 127.0.0.1 的 8888 端口,并可通过 http://127.0.0.1:8888 访问。在 Docker 环境中使用 TensorFlow 映像时,可通过映射端口实现外部访问。
587

被折叠的 条评论
为什么被折叠?



