当前位置:网站首页>配置Jupyter远程服务器
配置Jupyter远程服务器
2022-07-28 11:22:00 【红烧code】
配置 J u p y t e r Jupyter Jupyter远程服务器
1. 生成 J u p y t e r N o t e b o o k / L a b Jupyter Notebook/Lab JupyterNotebook/Lab配置文件
这里以 N o t e b o o k Notebook Notebook为例:
jupyter notebook --generate-config
输出:
/root/.jupyter/jupyter_notebook_config.py
2. 修改 J u p y t e r Jupyter Jupyter默认配置
首先生成密码的哈希值,使用 P y t h o n Python Python运行:
from notebook.auth import passwd
passwd()
打开上述 j u p y t e r _ n o t e b o o k _ c o n f i g . p y jupyter\_notebook\_config.py jupyter_notebook_config.py文件,在文件尾追加:
c.NotebookApp.allow_remote_access = True
c.NotebookApp.allow_root = True
c.NotebookApp.ip = '0.0.0.0'
c.NotebookApp.password = 'password hash value' # 自己刚刚生成的密码哈希值
c.NotebookApp.open_browser = False
3. 挂在后台运行
nohup jupyter notebook --allow-root &
4. 访问成功

边栏推荐
- Final modifier attribute
- Update dev (development version) of the latest win11
- [leetcode] 8. binary search · binary search
- Untiy中控制Animation的播放速度
- Introduction to the usage of SAP ui5 image display control avatar trial version
- Lua对table进行深拷贝
- 多线程与高并发(三)—— 源码解析 AQS 原理
- Unity中使用UnityWebRequest进行网络和本地图片加载
- [diary of supplementary questions] [2022 Niuke summer school 2] h-take the elevator
- js代码如何被浏览器引擎编译执行的?
猜你喜欢

Distributed system (III) construction of distributed transaction service

LabVIEW AI visual Toolkit (non Ni vision) download and installation tutorial

从0开发一个自己的npm包
![[leetcode] 6. invert binary tree](/img/1b/fdc5f8904bca319ffc97411213afe8.jpg)
[leetcode] 6. invert binary tree

简单选择排序与堆排序

Design and implementation of SSM personal blog system

Hcip (configuration of GRE and mGRE and OSPF related knowledge)

China business CDP white paper | love Analysis Report

Hcip (condition matching and OSPF packet related knowledge)

Introduction to the usage of SAP ui5 image display control avatar trial version
随机推荐
R language ggplot2 visualization: use the ggdotplot function of ggpubr package to visualize dot plot, set the add parameter, add violin graph to the dot plot, and add the vertical line of mean standar
2022.07.08 summer training personal qualifying (III)
The reflect mechanism obtains the attribute and method information of class
Interfaces and abstract classes
boost官网搜索引擎项目详解
14. User web layer services (II)
【补题日记】[2022牛客暑期多校2]D-Link with Game Glitch
Unity encountered a pitfall and the AB package failed to unload
R language uses dplyr package group_ By function and summarize function calculate the mean value of all covariates involved in the analysis based on grouped variables (difference in means of covariate
REST风格
Upgrading of computing power under the coordination of software and hardware, redefining productivity
DNS series (III): how to avoid DNS spoofing
Direct insert sort and Hill sort
[diary of supplementary questions] [2022 Niuke summer multi school 2] l-link with level editor I
Alexnet - paper analysis and reproduction
Detailed explanation of boost official website search engine project
Simple selection sort and heap sort
Shell (I)
【补题日记】[2022牛客暑期多校2]H-Take the Elevator
Lua makes a deep copy of table