【Jupyter 启动时如何指定目录】

你在 Windows 系统下运行 jupyter notebook 时,遇到了 Jupyter Notebook 打开的目录不是你想要的 E:\desktop\yolo-study ,而是其他路径。这可能是由于 Jupyter 的默认配置问题启动路径问题 导致的。


🔍 原因分析

  1. Jupyter 默认根目录设置错误

    • 你的 jupyter_notebook_config.py 文件设置了:

      python 复制代码
      c.ServerApp.root_dir = 'E:\jupyter notebook file'  # 有问题(注意"\j"错误转义)
    • 这个路径有问题,因为 \j 被识别为无效的转义字符(导致路径解析失败)。

  2. Windows 路径的反斜杠 (\) 问题

    • Windows 通常使用 \,但在 Python/Jupyter 配置中需要使用 /\\ 避免转义:

      python 复制代码
      c.ServerApp.root_dir = r'E:\jupyter notebook file'  # 用 `r` 前缀(推荐,原生字符串)
      # 或者
      c.ServerApp.root_dir = 'E:\\jupyter notebook file'  # 用 `\\` 手动转义
  3. Jupyter 启动时未指定目录

    • 你在 E:\desktop\yolo-study 下运行 jupyter notebook,但 Jupyter 仍然读取了 C:\Users\ZHY\.jupyter\jupyter_notebook_config.py 的配置,导致路径混淆。

🚀 解决方案

1. 启动时明确指定目录

直接在命令行进入 E:\desktop\yolo-study 并启动 Jupyter:

bash 复制代码
# 进入你的目标目录(E:\desktop\yolo-study)
cd /d E:\desktop\yolo-study  # Windows
# 或者
pushd E:\desktop\yolo-study

# 然后启动
jupyter notebook

如果仍跳转到其他目录,可能是 jupyter_notebook_config.py 强制改了目录。


2. 修复 jupyter_notebook_config.py 配置

找到并编辑 C:\Users\ZHY\.jupyter\jupyter_notebook_config.py

python 复制代码
# 修改这两行
c.ServerApp.external_connection_dir = r'E:\jupyter notebook file'
c.ServerApp.root_dir = r'E:\jupyter notebook file'
  • r 前缀 表示 原生字符串(raw string) ,防止 \j 被当成转义字符。

然后重启 Jupyter:

bash 复制代码
jupyter notebook

3. 临时覆盖默认目录(推荐)

如果你不想改配置文件,每次手动指定启动目录:

bash 复制代码
jupyter notebook --notebook-dir="E:\desktop\yolo-study"

或:

bash 复制代码
pushd E:\desktop\yolo-study
jupyter notebook

4. 检查 Jupyter 当前工作目录

确保 Jupyter 运行在正确的路径:

python 复制代码
import os
os.getcwd()  # 在 Jupyter Notebook 单元格里运行,查看当前目录

如果不是你想要的位置,可以 手动调整 cd 命令


⚡ 总结

  1. jupyter_notebook_config.py 里的路径格式错误,导致 Jupyter 使用了错误的工作目录\j 被解析为非法转义字符)。
  2. 解决方案
    • 方法 1 :直接在 E:\desktop\yolo-study 下启动 Jupyter。
    • 方法 2 :修复 jupyter_notebook_config.py 的路径(使用 r'E:\...')。
    • 方法 3 :使用 --notebook-dir="E:\desktop\yolo-study" 指定目录。

📌 最终建议

推荐 pushd E:\desktop\yolo-study && jupyter notebook,这样不用改配置,保证每次启动都进入正确的目录!

如果仍有问题,可以:

  • 删除 C:\Users\ZHY\.jupyter\jupyter_notebook_config.py 重新生成默认配置(jupyter notebook --generate-config)。
  • 或者直接卸载并重装 Jupyter(pip uninstall notebook + pip install notebook)。
相关推荐
不爱学英文的码字机器1 分钟前
数字孪生的浪潮:从虚拟镜像到现实世界的 IT 变革
大数据·python
小白—人工智能4 分钟前
数据可视化 —— 直方图
python·信息可视化·数据可视化
大模型真好玩31 分钟前
初学者必看大模型微调指南:Unsloth官方微调技巧大公开!
人工智能·python
谈不譚网安1 小时前
初识Python
开发语言·python
pink大呲花1 小时前
设置右键打开VSCode
ide·vscode·编辑器
慕雪华年1 小时前
【Python】使用uv管理python虚拟环境
开发语言·python·ai·uv·mcp
njsgcs1 小时前
yolov5 源码 +jupyter notebook 笔记 kaggle
笔记·yolo·jupyter
跳跳糖炒酸奶2 小时前
第二章、Isaaclab强化学习包装器(1)
人工智能·python·算法·ubuntu·机器人
Dxy12393102162 小时前
python合并一个word段落中的run
python·word
高效匠人3 小时前
Python中的Walrus运算符分析
java·服务器·python