软件安装服务器(docker) 安装 jupyter

Posted S大幕

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了软件安装服务器(docker) 安装 jupyter相关的知识,希望对你有一定的参考价值。

  1. 安装:pip install jupyter
  2. 生成 配置文件 jupyter notebook --generate-config
  3. 设置配置文件 vim ~/.jupyter/jupyter_notebook_config.py
#需要在末端添加一下配置信息:
c.NotebookApp.ip = '*' #所有绑定服务器的IP都能访问,若想只在特定ip访问,输入ip地址即可
c.NotebookApp.port = 8088 #默认是8888,图方便直接设80端口
c.NotebookApp.open_browser = False #我们并不想在服务器上直接打开Jupyter Notebook,所以设置成False
c.NotebookApp.notebook_dir = '/workdir' #这里是设置Jupyter的根目录,若不设置将默认root的根目录
c.NotebookApp.allow_root = True # 为了安全,Jupyter默认不允许以root权限启动jupyter 
  1. 设置密码:jupyter notebook password
  2. 启动 :jupyter notebook |
  3. 后台运行:nohup jupyter notebook --allow-root > jupyter.log 2>&1 &

以上是关于软件安装服务器(docker) 安装 jupyter的主要内容,如果未能解决你的问题,请参考以下文章

软件安装服务器(docker) 安装 jupyter

Docker 安装jupyter

docker中安装jupyter,远程访问

极智开发 | docker内安装jupyter notebook的正确姿势

[完美解决]如何在windows安装docker toolbox,使用tensorflow,Jupyter Notebook,各种问题的解决方案

Jupyter notebook 安装教程(2022.9.24更新)