Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 789 Bytes

jupyterlab.md

File metadata and controls

33 lines (25 loc) · 789 Bytes

Install jupyter lab

sudo pip3 install --upgrade pip
sudo pip3 install jupyterlab

Reference

Setting remote jupyter lab

Download setup_nbserver_jupyter.py.

wget https://raw.githubusercontent.com/sungjae-cho/linux/master/setup_nbserver_jupyter.py

Execute the downloaded python script for installation.

python3 setup_nbserver_jupyter.py

After execution, you can specify a port number and a password required to access jupyter lab.

Execute jupyter lab

jupyter lab # case 1: without root permission
sudo juypter lab --allow-root # case 2: with root permission

Execute jupyter lab in a docker

jupyter lab --ip 0.0.0.0 --port 8888 --no-browser --allow-root