• 免密码登录

    1
    
    jupyter notebook --ip='*' --NotebookApp.token='' --NotebookApp.password=''
    
    • 其中 … –ip=’*’ … 表示允许所有 ip 访问而不仅是本机的 127.0.0.1 ,从而达到远程连接的效果
  • 远程连接但是加上一点点安全性

    1
    
    jupyter notebook --ip='*' --NotebookApp.token='hcy'
    
    • 设置 token 为 hcy ,远程访问的时候如下访问

      1
      2
      
      # {jupyter notebook ip}:8888/?token=hcy 
      http://172.35.40.120:8888/?token=hcy