I am trying to disable terminals in JupyterLab. Neither of the following seem to work
c.NotebookApp.terminals_enabled = False
c.ServerApp.terminals_enabled = False
Jupyter starts in a service using ExecStart=/bin/bash --login -c '/opt/conda/envs/jupyterlab/bin/jupyter lab --config=/home/jupyter/.jupyter/jupyter_notebook_config.py'
My ServerApp.terminals_enabled change is in jupyter_notebook_config.py file. I also tried to use a jupyter_server_config.py but that didn’t work either
I did run a sudo systemctl restart jupyter
See the versions I am using below.
$jupyter --version
Selected Jupyter core packages...
IPython : 8.17.2
ipykernel : 6.26.0
ipywidgets : 8.1.1
jupyter_client : 8.5.0
jupyter_core : 5.5.0
jupyter_server : 2.9.1
jupyterlab : 3.6.6
nbclient : 0.8.0
nbconvert : 7.10.0
nbformat : 5.9.2
notebook : 6.5.6
qtconsole : not installed
traitlets : 5.13.0
Any ideas?