I have setup WSL (Windows Subsystem for Linux) on Windows 10 and installed Anaconda with python 3 and jupyter lab included. When launching Jupyter lab, I am asked to copy paste http://localhost:8888/lab in my browser, and that works fine. However, I don't know how to access to all my notebooks stored in Windows, I can't browse Windows through Jupyter Lab.
I have searched in Google but can't find the answer.
Does anyone have an idea on how I can browse my notebooks folder stored in Windows?
Juggling files between different environments can be a big productivity killer, as you are already finding out. A potential approach would be to:
Organize your files on your local PC into a repository using github.com or equivalent, and pushing those files to your account.
Open a new terminal window in your Jupyter Lab, and pull the repo, substituting your name and email:
$ sudo apt install git
$ git config --global user.name "username"
$ git config --global user.email "email"
$ git init
$ git clone
$ conda list --explicit > spec-file.txt
$ git add spec-file.txt
$ git commit -m "added spec file for conda environment"