Skip to content
Snippets Groups Projects
jupyter_notebook_config.py 1.3 KiB
Newer Older
# Configuration file for jupyter-notebook.

#------------------------------------------------------------------------------
# Application(SingletonConfigurable) configuration
#------------------------------------------------------------------------------

## Set the log level by value or name.
c.Application.log_level = 'INFO'

#------------------------------------------------------------------------------
# NotebookApp(JupyterApp) configuration
#------------------------------------------------------------------------------

## The IP address the notebook server will listen on.
c.NotebookApp.ip = '*'

# Password to access the server
c.Notebook.password = ''
c.Notebook.allow_password_change = False

## The directory to use for notebooks and kernels.
c.NotebookApp.notebook_dir = '/notebooks/fidle'

## Whether to open in a browser after starting. The specific browser used is
#  platform dependent and determined by the python standard library `webbrowser`
#  module, unless it is overridden using the --browser (NotebookApp.browser)
#  configuration option.

## The port the notebook server will listen on.

## Disable the "Quit" button on the Web UI (shuts down the server)
c.NotebookApp.quit_button = False