## 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
相关推荐
卷无止境16 分钟前
Python能做嵌入式开发吗?一份写给动手派的生态与硬件全景图
后端·python
月光船幽幽4 小时前
检测用户意图复杂性的关键方法
人工智能·python
Sherotree6 小时前
Google Antigravity——Agent 被提到主界面
前端·ide·后端·edge浏览器
威联通网络存储7 小时前
TS-h3087XU-RP 汽车零部件质检追溯部署
python·汽车
你驴我7 小时前
WhatsApp 多账号场景下的会话归档与历史消息检索优化实践
后端·python
IT毕设实战小研7 小时前
基于安卓的空气质量查询系统
android·大数据·vue.js·爬虫·python·django·课程设计
harmful_sheep8 小时前
java group by常见用法
java·开发语言·python
whcyhhh8 小时前
头歌实践教学平台:数据科学与大数据技术导论(十六)
大数据·开发语言·python
宸津-代码粉碎机8 小时前
AI工程化高阶实战|从Demo到生产落地核心架构、全套源码与避坑指南
java·大数据·开发语言·人工智能·python·架构
YZJenny9 小时前
在服务器上安装使用code-server(Web 版 VS Code)
ide·vscode·编辑器