Linux 系统下的Jupyter notebook 的存储位置在哪
时间: 2024-04-30 11:19:21 浏览: 238
plotly-tutorial:有关使用Python软件包Plotly来构建与能源系统相关的数据的漂亮图表的教程。 如2018年6月在苏黎世openmod研讨会上所见
在Linux系统下,Jupyter notebook 的默认存储位置是在 `/home/用户名/` 目录下的 `.jupyter/` 文件夹中。其中,`.ipynb_checkpoints/` 文件夹是用来存储 Jupyter notebook 的自动备份文件的,而 `nbconfig/` 文件夹是用来存储 Jupyter notebook 的配置文件的。如果你想更改 Jupyter notebook 的默认存储位置,可以在命令行中使用 `--notebook-dir` 参数来指定新的存储路径,例如:
```
jupyter notebook --notebook-dir=/path/to/new/folder
```
这样,启动 Jupyter notebook 后,它就会默认存储在指定的文件夹中。
阅读全文