Synergist
Synergist

Reputation: 547

Setting up a project-level Jupyter Notebook Config file

I'd like my Jupyter Server to use a different jupyter_notebook_config.py file for each of my projects. Currently, my jupyter_notebook_config.py resides in my ~/.jupyter/ directory. Ideally, I'd like to be able to put a project-specific version of the config file in the root directory of each project and have Jupyter Server load it from there. How can I achieve this goal?

Upvotes: 3

Views: 781

Answers (1)

Gabriela Melo
Gabriela Melo

Reputation: 619

You could set the JUPYTER_CONFIG_DIR variable to being each project's root folder whenever running a Jupyter server for that project.

https://jupyter.readthedocs.io/en/latest/projects/jupyter-directories.html#configuration-files

Upvotes: 3

Related Questions