Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1 KB

jupyter.md

File metadata and controls

49 lines (36 loc) · 1 KB

Jupyter

Install

conda install -c conda-forge jupyterlab
pip install jupyterlab

Lab Configuration

jupyter lab --generate-config

Writing default config to: ~/.jupyter/jupyter_lab_config.py
vi ~/.jupyter/jupyter_lab_config.py
c.LabApp.open_browser = False # line 348
c.ServerApp.allow_origin = '*' # line 411
c.ServerApp.ip = '0.0.0.0' # line 595. or 'domain.local or '172.xxx.Sxxx.xxx'
c.ServerApp.open_browser = False # line 682
c.ServerApp.browser = u'open -a /Applications/Google\ Chrome.app %s'

Notebook Configuration

jupyter notebook --generate-config

Writing default config to: ~/.jupyter/jupyter_notebook_config.py
vi ~/.jupyter/jupyter_notebook_config.py
c.NotebookApp.allow_origin = '*' # line 48
c.NotebookApp.ip = '0.0.0.0' # line 204. or 'domain.local or '172.xxx.xxx.xxx'
c.NotebookApp.open_browser = False # line 267