Install Jupyter in WSL
sudo apt update && upgrade
sudo apt install python3 python3-pip ipython3
sudo apt install jupyter-core
#Check your version
python3 --version
#Upgrade pip
python3 -m pip install --upgrade pippip3 install jupytervi ~/.bashrc#Add the following line after the case statement
alias jupyter-notebook="~/.local/bin/jupyter-notebook --no-browser"
Last updated