什么是Notebook Server

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.

你可能感兴趣的:(开发工具,其他)