set the root directory when starting jupyter notebooks

Solutions on MaxInterview for set the root directory when starting jupyter notebooks by the best coders in the world

showing results for - "set the root directory when starting jupyter notebooks"
Giovanni
07 Jun 2016
1# To change the Jupyter Notebooks startup directory:
21. From the command line (shell) run: jupyter notebook --generate-config
32. View the config file at: ~/.jupyter/jupyter_notebook_config.py
43. Change the line: c.NotebookApp.notebook_dir = '' to
5	c.NotebookApp.notebook_dir = '/path/to/desired/startup/directory'