是否可以在本地网络上登录 jupyter 运行 并使用其所有功能?
Is it possible to log into jupyter running on local network and use all its features?
是否可以 运行 Jupyter lab 或 notebook 安装在本地网络的不同机器上?类似于 192.168.1.8:port_address
当然可以。
用这个启动 jupyter 笔记本:
jupyter notebook --ip <your_LAN_ip> --port 8888
然后访问:
http://your_LAN_ip:8888
来自另一台计算机。
您可以轻松地将端口号 8888 更改为您想要的任何数字,例如 6006。
建议您在访问笔记本服务器时使用密码。要设置密码,只需 运行 jupyter notebook 密码。否则,其他人可以访问您的笔记本。
这里是设置笔记本密码的link:https://jupyter-notebook.readthedocs.io/en/latest/public_server.html#notebook-server-security
是否可以 运行 Jupyter lab 或 notebook 安装在本地网络的不同机器上?类似于 192.168.1.8:port_address
当然可以。 用这个启动 jupyter 笔记本:
jupyter notebook --ip <your_LAN_ip> --port 8888
然后访问:
http://your_LAN_ip:8888
来自另一台计算机。 您可以轻松地将端口号 8888 更改为您想要的任何数字,例如 6006。
建议您在访问笔记本服务器时使用密码。要设置密码,只需 运行 jupyter notebook 密码。否则,其他人可以访问您的笔记本。
这里是设置笔记本密码的link:https://jupyter-notebook.readthedocs.io/en/latest/public_server.html#notebook-server-security