Jupyter-scheduler output_directory override in jupyterhub_config.py file

Dear all,
how could I override the default directory jupyter-scheduler uses to download output (default is “jobs”)?
In the jupyterhub_config.py I have tried:
c.SchedulerApp.output_directory = ‘’
c.Scheduler.output_directory = ‘’
c.jupyter_scheduler.output_directory = ‘’
but it didn’t work.
Thanks in advance

jupyterhub_config.py isn’t loaded in the single-user environment. You’ll need to put it in a shared jupyter_server_config.py in the user environment. For example, in /etc/jupyter/jupyter_server_config.py.

2 Likes