I have a Jupyter lab installed on Windows. I installed Jupyter Lab on WSL Ubuntu. I can lunch Jupyter Lab from Linux terminal. This will open Jupyter Lab on Chrome browser
Update:
You can access the Linux files by modifying the configuration file. You'll need to allow root access and specify the Jupyter Notebook directory. The directory starts from the root directory of the Linux file system. You can also start from the Windows file system /mnt/c/users/admin/.jupyter
.
{
"NotebookApp": {
...
"allow_root": true,
"notebook_dir": "/home/admin/.jupyter",
...
}
}
Original:
Is there a particular reason you need to save the Jupyter Notebook files on the Linux file system? WSL has full access to the Windows file system so it shouldn't matter where the file is saved.
To add to Jason's point:
Apparently, WSL 2 uses a virtual network adapter that has its own IP address. It also changes the IP address every time the server is restarted. It got annoying having to manually update the IP address so I wrote a script to update it automatically.
I wrote an article about how to do it to make it easier for everyone:
How to Set Up the Jupyter Notebook Home and Public Server On Windows Subsystem for Linux 2 (WSL2)
The attached photo is a Notebook running on WSL 2 that's saved on the Windows 10 file system.