Install Jupyter in WSL
First Make sure that Windows Subsystem for LInux is installed.
First thing is to make sure you have updates & python Installed
You can run Jupyter Notebook in your WSL. Here WSL will act as a jupyter server accessible at localhost with port 8888. The steps to install Jupyter is as following-
Install Jupyter by typing the following command in your Bash Shell.
2. Create alias to launch jupyter without browser from the WSL:
Open your bash configuration and add the following line
add the following line "~/.bashrc", saving the fil
After that you have to source your file by updating your Bash profile by entering:
Now whenever you will type Jupyter Notebook in your bash you will be directed to the local host. so type:
Reference/Orig Source Credit goes to: https://medium.com/@sayanghosh_49221/jupyter-notebook-in-windows-subsystem-for-linux-wsl-f075f7ec8691
Last updated