查看jupyter notebook保存文件路径

目前我了解的查看jupyter notebook的保存文件路径的方法有两种:

1. 通过打开jupyter notebook后终端显示

在终端中 **Serving notebooks from local directory:**后面的就是文件保存的路径
查看jupyter notebook保存文件路径_第1张图片

2.通过在jupyter notebook中运行脚本

第一步在jupyter notebook中输入脚本

import os
print(os.path.abspath('.'))

第二步运行,得出结果
在这里插入图片描述

这两种方法的区别还是一目了然的,显然通过终端观察没有通过脚本运行得到的结果文件位置更加精确。

你可能感兴趣的:(查看jupyter notebook保存文件路径)