000b - Python ejercicios w3 - Cambiar el browser y directorio inicial para Jupyter notebooks

3 years ago
4

000 - Python ejercicios w3 - Cambiar el browser y directorio inicial para Jupyter notebooks

Como cambiar el browser en el que se abre Jupyter.
Quiero que se abra con Brave Browser

Y como cambiar su directorio inicial.

1. Abrimos Anacoda Prompt y ponemos el siguinete comando
jupyter notebook --generate-config

2. Se va a generar un archivo "jupyter_notebook_config.py"

3. Abrir "jupyter_notebook_config.py" con un editor de texto

4. Cambiar las lineas correspondientes

## Specify what command to use to invoke a web browser when opening the notebook.
# If not specified, the default browser will be determined by the `webbrowser`
# standard library module, which allows setting of the BROWSER environment
# variable to override it.
# Default: ''
c.NotebookApp.browser = u'X:/RUTA_DEL_BROWSER/browser.exe %s'

## The directory to use for notebooks and kernels.
# Default: ''
c.NotebookApp.notebook_dir = r'X:/RUTA_DEL_DIRECTORIO/directorio'

Loading comments...