How to navigate to a different directory in Jupyter Notebook?

For windows user there is another solution. You can create a symbolic link at directory that Jupyter starts working.

from command prompt: ( mklink /D [the name of the link] [target directory]

mklink /D G_Drive G:\DsN20


Default root of the Jupyter explorer is the current location (folder) where you start the Jupyter server. With the explorer, you can only navigate to all levels of the children folders, but not the parent's of that location. There is an option to set the root folder --notebook-dir when you start Jupyter. Here is an example that starts Jupyter server and sets the root at D:/my_works/jupyter_ipynbs

jupyter notebook --notebook-dir D:/my_works/jupyter_ipynbs

Similarly, for jupyter lab:

jupyter lab --notebook-dir D:/my_works/jupyter_ipynbs

Once Jupyter is open on the browser, its home or root directory will be what you specified as the value of --notebook-dir, in this case D:/my_works/jupyter_ipynbs. From that point, you can navigate to all its sub-directories.


I use the next code to set jupyter lab from any root folder. From the Anaconda Prompt:

jupyter lab --notebook-dir "E:/Google Drive/Sediments_Regi"

Between the " " include the desire folder.