jupyter服务器配置
时间: 2023-11-05 18:04:51 浏览: 144
jupyter_nbextensions_configurator:提供了nbextensions配置界面的jupyter笔记本服务器扩展
要配置Jupyter服务器,首先需要创建一个设置文件。可以通过运行命令 "jupyter notebook --generate-config" 来生成设置文件。然后,使用命令 "cd ~/.jupyter" 进入Jupyter配置目录。接下来,使用命令 "vim jupyter_notebook_config.py" 打开配置文件,可以在该文件中进行相关配置,例如设置密码、默认工作目录和远程访问等。
参考文献:
: jupyter服务器搭建指南介绍了Jupyter搭建的步骤和配置选项。
: 拉取Jupyter镜像的过程展示了如何从Docker镜像仓库中获取Jupyter镜像。
引用:我们给 Jupyter 创建一个设置文件,并打开 (base)$ jupyter notebook --generate-config (base)$ cd ~/.jupyter # 进入 jupyter 配置目录 (base)$ vim jupyter_notebook_config.py # 打开配置文件 。 引用:jupyter服务器搭建指南 本文详细介绍了jupyter搭建的步骤,涉及到jupyter访问密码配置,默认工作目录配置,远程访问配置等。 引用:拉取jupyter镜像,这里我使用的jupytercgrads是我自己自建仓库的带C内核和Grads内核的,以后搞个Docker镜像仓库Harbor之搭建及配置,然后我把镜像传上来吧。 docker pull 127.0.0.1:5000/jupytercgrads mkdir jupyterlabjupyterlab docker run --name jupyter -d -p 8000:8888 -v `pwd`/jupyterlab/workspace:/workspace -w /workspace -e GRANT_SUDO=yes --user root 127.0.0.1:5000/jupytercgrads jupyter-lab --no-browser --port=8888 --ip=0.0.0.0 --allow-root
阅读全文