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

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

  1. Open cmd (or Anaconda Prompt) and run jupyter notebook –generate-config.
  2. This writes a file to C:Usersusername.jupyterjupyter_notebook_config.py.

Image for post

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 = ”

Image for post

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

Image for post

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:yourUserNameAny FolderMore 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!

46

No Responses

Write a response