Skip to content
Snippets Groups Projects
Commit 93f37111 authored by EXT Soraya Arias's avatar EXT Soraya Arias
Browse files

Change jupyter notebook to jupyter lab config

parent afcdf7d6
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
# 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.
c.NotebookApp.open_browser = True
## The port the notebook server will listen on.
c.Notebook.port = 8888
## Allow running as root
c.Notebook.allow_root = True
## Disable the "Quit" button on the Web UI (shuts down the server)
c.NotebookApp.quit_button = False
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment