当前位置: 首页 > article >正文

## jupyter_server

$ conda install -c conda-forge jupyter_server 

查看配置文件路径

$ jupyter --paths

config:
    /home/musk/.jupyter
    /home/musk/anaconda3/etc/jupyter
    /usr/local/etc/jupyter
    /etc/jupyter
data:
    /home/musk/.local/share/jupyter
    /home/musk/anaconda3/share/jupyter
    /usr/local/share/jupyter
    /usr/share/jupyter
runtime:
    /home/musk/.local/share/jupyter/runtime

在目录 .jupyter 快速创建 jupyter_server_config.py

$ jupyter server --generate-config

自动设置密码

# 配置端口
c.ServerApp.port = 8888

# Set ip to '*' to bind on all interfaces (ips) for the public server
c.ServerApp.ip = '*'
c.ServerApp.password = u'sha1:bcd259ccf...<your hashed password here>'
c.ServerApp.open_browser = False


http://www.kler.cn/news/342057.html

相关文章:

  • mysql对某个数据库的所有表做精准的行数查询,做主从数据库比对
  • 请求响应-08.响应-案例
  • 基于SpringBoot+Vue的网约车管理系统
  • JAVA 多线程入门例子:CountDownLatch
  • 宠物空气净化器哪个牌子吸毛好?希喂、IAM、352真实测评
  • python 实现FP GraphMiner算法
  • Word页眉内容自动填充为章节标题
  • 【redis学习篇1】redis基本常用命令
  • Django学习笔记九:RESTAPI添加用户认证和授权
  • 在thinkphp中发送http请求
  • 5个免费ppt模板网站推荐!轻松搞定职场ppt制作!
  • 【C++】多肽
  • 网关在不同行业自动化生产线的应用
  • 【Vue】vue-admin-template项目搭建
  • 计算机网络803-(4)网络层
  • 古典舞在线交流平台:SpringBoot设计与实现详解
  • 使用 Pktgen 工具进行 PPS 性能测试
  • 操作系统中的进程管理详细介绍——进程的调度与通信
  • 从0开始深度学习(7)——线性回归的简洁实现
  • PHP静态化和伪静态如何实现的