jupyter lab file location

Solutions on MaxInterview for jupyter lab file location by the best coders in the world

showing results for - "jupyter lab file location"
Omar
24 Jul 2020
1There are two ways to do even though they have only very small difference. Follow the way marneylc suggested above: i.e.
2
31) Open "Anaconda Prompt" and type jupyter notebook --generate-config
4
52) You find the file in C:\Users\username\.jupyter\jupyter_notebook_config.py
6
73) Change the line of #c.NotebookApp.notebook_dir = '' to c.NotebookApp.notebook_dir = 'c:\test\your_root\'
8
94) Then, go to the shortcut of Jupyter Notebook located in C:\Users\User_name\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Anaconda3 (64-bit)
10
115) Do the right click and go to the Properties
12
136) In the Target field, remove %USERPROFILE% as stenlytw suggested above.
14
157) Then, In the field of Start in, type the same directory of c:\test\your_root\ in jupyter_notebook_config.py
16
178) Done!
18
19As the simpler way, after step 3, go to C:\Users\User_name\Anaconda3\Scripts
20
214-2) You can see the file of jupyter-notebook.exe and click it.
22
235-2) Then, the Jupyter start the folder you specified in jupyter_notebook_config.py. So make the shortcut of this file.
24
256-2) Done.