Skip to content

Latest commit

 

History

History
63 lines (46 loc) · 2.5 KB

config_overview.md

File metadata and controls

63 lines (46 loc) · 2.5 KB

(configuration-overview)=

Configuration Overview

Beyond the default configuration settings, you can configure a rich array of options to suit your workflow. Here are areas that are commonly configured when using Jupyter Notebook:

  • {ref}Jupyter's common configuration system <configure-common>
  • {ref}Jupyter Server <configure-jupyter-server>
  • {ref}Notebook extensions <configure-nbextensions>

Let's look at highlights of each area.

(configure-common)=

Jupyter's Common Configuration system

Jupyter applications, from the Notebook to JupyterHub to nbgrader, share a common configuration system. The process for creating a configuration file and editing settings is similar for all the Jupyter applications.

(configure-jupyter-server)=

Jupyter server

The Jupyter Server runs the language kernel and communicates with the front-end Notebook client (i.e. the familiar notebook interface).

  • Configuring the Jupyter Server

    To create a jupyter_server_config.py file in the .jupyter directory, with all the defaults commented out, use the following command:

    $ jupyter server --generate-config
    
  • Running a Jupyter Server

  • Related: Configuring a language kernel to run in the Jupyter Server enables your server to run other languages, like R or Julia.

(configure-nbextensions)=

Notebook extensions

The Notebook frontend can be extending with JupyterLab extensions.

See the {ref}Frontend Extension Guide <frontend-extensions> for more information.

Security in Jupyter notebooks: Since security policies vary from organization to organization, we encourage you to consult with your security team on settings that would be best for your use cases. Our documentation offers some responsible security practices, and we recommend becoming familiar with the practices.