欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 健康 > 美食 > 【Jupyter 启动时如何指定目录】

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

2025/4/28 13:26:46 来源:https://blog.csdn.net/ZHY0091/article/details/147551645  浏览:    关键词:【Jupyter 启动时如何指定目录】

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


🔍 原因分析

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

    • 你的 jupyter_notebook_config.py 文件设置了:
      c.ServerApp.root_dir = 'E:\jupyter notebook file'  # 有问题(注意“\j”错误转义)
      
    • 这个路径有问题,因为 \j 被识别为无效的转义字符(导致路径解析失败)。
  2. Windows 路径的反斜杠 (\) 问题

    • Windows 通常使用 \,但在 Python/Jupyter 配置中需要使用 /\\ 避免转义:
      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:

# 进入你的目标目录(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

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

然后重启 Jupyter:

jupyter notebook

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

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

jupyter notebook --notebook-dir="E:\desktop\yolo-study"

或:

pushd E:\desktop\yolo-study
jupyter notebook

4. 检查 Jupyter 当前工作目录

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

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)。

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

热搜词