jupyter_notebook_config.py文件的路径在哪里
时间: 2023-09-07 13:17:45 浏览: 331
使用jupyter notebook直接打开.md格式的文件
jupyter_notebook_config.py文件的路径通常在Jupyter Notebook的配置文件夹中。在命令行中运行以下命令可以打开配置文件夹:
```bash
jupyter --config-dir
```
该命令将输出配置文件夹的路径,通常为:
- Windows: `C:\Users\username\.jupyter`
- Linux/Mac: `/home/username/.jupyter`
在该文件夹中,可以找到jupyter_notebook_config.py文件。如果该文件不存在,可以通过以下命令在配置文件夹中创建一个新的配置文件:
```bash
jupyter notebook --generate-config
```
阅读全文