What you'll learn:
- Launching a live Jupyter Server on an AWS EC2 instance
- Building a custom AWS VPC from Scratch
- Setup an Ubuntu server to run a Jupyter Notebook
- Securely run Jupyter in the Cloud
One of the challenges of writing programs is having the ability to pick up where you left off. Jupyter Notebooks do this very well because they allow for interactive running of code, keep results in memory, and empower data scientists and programmers everywhere to build interesting things.
Jupyter is an interactive notebook which allows you to run code right inside the notebook. This is good for many reasons:
Notebooks, like actual books, can be shared easily
While running a notebook, the "state", is remembered: run some code and it' remembers the results of that code
Notebooks easily layout the process of a given program into a story-like progression that anyone can pick up and use.
If you've never worked with Jupyter Notebooks before, I highly recommend that you do.
This course is about bringing Jupyter Notebooks to the AWSCloud. We'll be preparing a AWSVirtual Private Cloud, Subnets, Internet Gateways, Route Tables, and more so that we can provision AWSEC2 instances securely and effectively.
Once we have an EC2 instance, we can configure nginx, supervisor, and Jupyter so we can run it automatically on a public IPaddress... check out the first video for more on this.