## jupyter_server

bash 复制代码
$ conda install -c conda-forge jupyter_server 

查看配置文件路径

bash 复制代码
$ 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

bash 复制代码
$ jupyter server --generate-config

自动设置密码

markdown 复制代码
# 配置端口
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
相关推荐
shinelord明5 分钟前
【Python】Python知识总结浅析
开发语言·人工智能·python
雷神乐乐36 分钟前
Python常用函数
开发语言·python
model20052 小时前
android + tflite 分类APP开发-1
python·tflite·model maker
感谢地心引力2 小时前
【Qt】Qt安装(2024-10,QT6.7.3,Windows,Qt Creator 、Visual Studio、Pycharm 示例)
c++·windows·python·qt·visual studio
Bruce_Liuxiaowei3 小时前
Python小示例——质地不均匀的硬币概率统计
开发语言·python·概率统计
我的运维人生3 小时前
Python技术深度探索:从基础到进阶的实践之旅(第一篇)
开发语言·python·运维开发·技术共享
Bonne journée3 小时前
‌在Python中,print(f‘‘)是什么?
java·开发语言·python
iiimZoey3 小时前
Dit架构 diffusion范式分类+应用
人工智能·python
R三哥哥啊4 小时前
【树莓派5B】IO串口通信使用
python