Today I Learned
I needed to use an EC2 instance to run a jupyter notebook. Here’s the steps it took to set do it.
How to
- Launch EC2 instance
- SSH into instance
- Run JupyterLab in EC2
jupyter-lab --no-browser --port=8889
- Use ssh for port forwarding
-L 8000:localhost:8889
- Open jupyter on your local browser at
localhost:8000