I installed Jupyter Lab on WSL Ubuntu. I can lunch Jupyter Lab from Linux terminal,and it lunches from the Linux system as follows:
[I 02:52:56.256 LabApp] JupyterLab beta preview extension loaded from /home/user/anaconda3/lib/python3.6/site-packages/jupyterlab
[I 02:52:56.256 LabApp] JupyterLab application directory is /home/user/anaconda3/share/jupyter/lab
[I 02:52:56.273 LabApp] Serving notebooks from local directory: /home/user/pythoncode
[I 02:52:56.273 LabApp] 0 active kernels
[I 02:52:56.274 LabApp] The Jupyter Notebook is running at:
[I 02:52:56.274 LabApp] http://localhost:8888/?token=8a6e...
This will open Jupyter Lab on Chrome browser from which I can start a new Jupyter Notebook with Python [conda env:root]*
However this new Jupyter Notebook will be automatically saved in 'C:\Users\user' under the Windows file system instead of the Linux file system. Although I was expecting that it will be saved under '/home/user/pythoncode' or 'home/user/anaconda3/share/jupyter/lab' in the Linux file system.
Even when I have a Jupyter notebook on the Linux file system, it gives an error when try to open it using 'Open from Path' as follows:
Cannot open
Could not find path: \\wsl$\Ubuntu\home\user\pythoncode\mynotebook.ipynb
There are two questions:
(1) How to save this new Jupyter Notebook in a directory in the Linux file system?
(2) How to access Linux file system from the File Browser of Jupyter Lab?