什么是Notebook Server

来源:互联网 发布:mac强制卸载程序 编辑:程序博客网 时间:2024/06/06 23:50

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.