How to change the working directory of Jupyter and Jupyter Lab on Windows environment

Shan Yi Tan
Sep 26, 2019
  1. Open cmd (or Anaconda Prompt) and run jupyter notebook --generate-config.
  2. This writes a file to C:\Users\username\.jupyter\jupyter_notebook_config.py.

3. Copy the link and browse to the file location and open it in an Editor

4. Search for the following line in the file: #c.NotebookApp.notebook_dir = ''

5. Replace by c.NotebookApp.notebook_dir = 'C:/the/path/to/home/folder/'

Make sure you use forward slashes in your path , backslashes could be used if placed in double quotes even if folder name contains spaces as such : "D:\yourUserName\Any Folder\More Folders\"

6. Remove the # at the beginning of the line to allow the line to execute. Save the file.

7. Open cmd (or Anaconda Prompt) and run jupyter lab. You will see your home directory being set to the new path.

Voila!

--

--

Shan Yi Tan
Shan Yi Tan

Written by Shan Yi Tan

A fintech product manager who runs creative projects and business after 9-5 | More manifestation and productivity at http://wondefull.com/

Responses (12)