1. 使用conda 安装 jupyter
conda install jupyter
2. 在服务器端不打开浏览器,指定 端口, IP , 运行jupyter notebook
这里假设端口为9999,IP为192.168.1.100,不打开浏览器使用参数 no-brower
jupyter notebook --no-browser --port 9999 --ip=192.168.1.100
运行后结果:
可以看到启动后会自动生成一个token, 这个就类似密码一样,用来登录jupyter客户端网页的。
=============================================================