Access remote jupyter lab in local machine
Steps
- SSH to remote machine
- Install jupyter lab by
pip install jupyterlab - Run jypyter lab by
jupyter lab --ip=0.0.0.0 --port=8888 --no-browser - Access jupyter lab in local browser by URL
http://[INSTANCE_EXTERNAL_IP]:8888/lab
Here [INSTANCE_EXTERNAL_IP] means your remote machine IP. It could be GCP instance or AWS machine.
Comments