From 498d5d814522b84c043bc3b9e6d6d1809fdcb785 Mon Sep 17 00:00:00 2001
From: Steven Clontz
An easy way to edit an individual file is just to click
the pencil icon such as the one that appears on your README.
-This file is written in
+
Try to edit your file to say something like
diff --git a/source/ch-jupyter.ptx b/source/ch-jupyter.ptx
index f85b060..97ae807 100644
--- a/source/ch-jupyter.ptx
+++ b/source/ch-jupyter.ptx
@@ -60,47 +60,77 @@ README file (like this
.
+This file is written in Markdown
.
like this
. Sites like
+I'm learning how to
use GitHub!
, perhaps adding a link back to this document
using try out
the Codespace
-without saving your work long-term.
+without saving your work long-term, but you can still create a fork
+with your changes later if you decide to.
kernel
.
+
+The
+Kernels for several different programming languages exist. We will use +a Python kernel in this book, not least of which because it's one of the +most commonly used kernels, and the kernel that's already set up for use +with the GitHub Jupyter Codespace repo. +
+
+In your Codespace, use the Select kernel
button, to choose
+a Python environment
. You should be able to select the default
+global environment without needing to create a new one. Your notebook
+is ready once you see
+A notebook is composed of many consecutive parts, known as cells
.
+
+A
+Each Markdown cell uses, well, Markdown (
+But it's the Code cells that set a notebook apart. Each Code cell
+in a notebook is run consecutively, with the result of the final
+line of code being displayed for the reader. Importantly, these
+outputs are saved to the notebook itself, meaning that by sharing
+the notebook with a colleague, they can see the output of your
+code without running it themselves! This is not only convenient,
+but it's essential when communicating the result of code that
+uses software your reader does not have installed themselves.
+Likewise, it allows for showing the results of code via a web
+browser, such as at
+
+I've provided a
+