Skip to content

Latest commit

 

History

History
20 lines (11 loc) · 484 Bytes

jupyter.md

File metadata and controls

20 lines (11 loc) · 484 Bytes

The Basics

Remote Forwarding

I primarily use a ChromeBook with local VMs as my primary laptop so I had to do this to be able to port forward through the local container that gets an 100.115.92.x address.

Update ~/.jupyter/jupyter_notebook_config.py

c.NotebookApp.allow_origin = '*'
c.NotebookApp.allow_remote_access = True

And then ssh -L 0.0.0.0:8888:127.0.0.1:8888 [email protected]

This is insecure but within local ChromeBook so :thisisfine:

Add Ons