jupyter 配置

# 安装 
 pip install --upgrade pip setuptools
pip install jupyter notebook==6.4.9
# 生成Jupyter默认配置文件,并自定义配置选项
jupyter notebook --generate-config
#  修改配置文件
/root/.jupyter/jupyter_notebook_config.py

注意使用参数
c.NotebookApp.allow_remote_access = True 
c.NotebookApp.ip='0.0.0.0'
c.NotebookApp.allow_root =True 
c.NotebookApp.open_browser = False 
c.NotebookApp.port = 7860 
###
#c.NotebookApp.allow_remote_access = True # 允许远程访问
#c.NotebookApp.ip='0.0.0.0' # 自动获取服务器ip
#c.NotebookApp.allow_root =True # 打开root权限启动
#c.NotebookApp.open_browser = False # 服务端禁止自动打开浏览器
#c.NotebookApp.port = 7860 # 创建docker时候配置的端口号
#   启动命令 
nohup  jupyter notebook >log &


#  注意 使用的token 可以在log中看到 这个token访问的时候需要输入

你可能感兴趣的:(jupyter,ide,python)