jupyter notebook_config在哪里
时间: 2023-08-29 08:05:28 浏览: 79
jupyter notebook 配置文件 jupyter_notebook_config.py
`jupyter notebook_config.py` 文件通常位于 Jupyter Notebook 配置文件夹中。可以通过在终端中输入以下命令找到该文件夹的路径:
```
jupyter --config-dir
```
然后进入该文件夹,如果没有 `jupyter_notebook_config.py` 文件,可以通过以下命令生成:
```
jupyter notebook --generate-config
```
这将在配置文件夹中生成 `jupyter_notebook_config.py` 文件。
阅读全文