时间:2021-05-22
upyter Notebook已经逐渐取代IDE成为了多平台上写简单Python脚本或应用的几家选择。
Jupyter Notebook可以通过pip/pip3安装:
pip3 install jupyter
然后在目标文件夹目录下,输入指令jupyter notebook开启服务,可在浏览器地址localhost:8888中访问主页
允许远程访问
在本地,我们访问localhost:8888就能看到Jupyter Notebook的本地主页,但是在远程访问中,并不能直接这么做。因此需要以下一些操作:
1. 生成一个 notebook 配置文件
默认情况下,配置文件~/.jupyter/jupyter_notebook_config.py并不存在,需要自行创建。使用下列命令生成配置文件:
jupyter notebook --generate-config
如果是 root 用户执行上面的命令,会发生一个问题:
Running as root it not recommended.
Use --allow-root to bypass.
提示信息很明显,root 用户执行时需要加上 –allow-root 选项。
jupyter notebook --generate-config --allow-config
执行成功后,会出现下面的信息:
Writing default config to: /root/.jupyter/jupyter_notebook_config.py
2. 生成密码
从 jupyter notebook 5.0 版本开始,提供了一个命令来设置密码:jupyter notebook password,生成的密码存储在jupyter_notebook_config.json。
$ jupyter notebook passwordEnter password: ****Verify password: ****[NotebookPasswordApp] Wrote hashed password to /Users/you/.jupyter/jupyter_notebook_confi3. 远程访问
以上设置完以后就可以在服务器上启动jupyter notebook,jupyter notebook, root 用户使用jupyter notebook --allow-root。打开 IP:指定的端口(默认为8888), 输入密码就可以访问了。
若8888端口被占用,浏览器打开IP:指定的端口(默认为8888) 应该访问不了,可以用如下方式启动jupyter notebook
jupyter notebook --no-browser --port 6000 --ip=192.168.1.103
就是指定端口号和ip。通过这种方式在浏览器输入 ip:端口号,应该就能看到对应界面了。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
1、远程服务器上安装jupyternotebook(配置jupyter_notebook_config.py文件)sudopipinstalljupyter2、
1.Jupyter默认目录调整首先要找到jupyter生成的配置文件jupyter_notebook_config.py。如果没有,在anacondapromp
Linux和Windows操作系统远程互访的方法您想在Linux系统下远程访问Windows系统,在Windows、UNIX下远程访问Linux系统吗,本文教您
换用非默认浏览器时需要输入密码或token查询方法:在XX:\AnacondaXX\Scripts下运行jupyter-notebook.exelist可得to
jupyternotebook的安装在这里都不赘述可以参考jupyter官网的步骤http://jupyter-notebook.readthedocs.io/