From 4d166cce2e012833482a34438848512c6b7faf85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20P=C3=A9rez-Su=C3=A1rez?= Date: Mon, 22 Oct 2018 18:47:09 +0100 Subject: [PATCH] ipython -> jupyter fixes #52 --- ch00python/010exemplar.ipynb | 2 +- ch00python/index.md | 2 +- ch01data/060files.ipynb | 2 +- ch02git/01Intro.ipynb | 4 ++-- ch04packaging/010Installation.ipynb | 2 +- ch05construction/01introduction.ipynb | 2 +- ch08performance/040cython.ipynb | 2 +- index.md | 2 +- intro.md | 2 +- session99/index.md | 2 +- session99/windows.md | 4 ++-- 11 files changed, 13 insertions(+), 13 deletions(-) diff --git a/ch00python/010exemplar.ipynb b/ch00python/010exemplar.ipynb index 077553f9..9d253f83 100644 --- a/ch00python/010exemplar.ipynb +++ b/ch00python/010exemplar.ipynb @@ -73,7 +73,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Now, if you try to follow along on this example in an IPython notebook, you'll probably find that \n", + "Now, if you try to follow along on this example in an Jupyter notebook, you'll probably find that \n", "you just got an error message.\n", "\n", "You'll need to wait until we've covered installation of additional python libraries later in the course, then come\n", diff --git a/ch00python/index.md b/ch00python/index.md index 1f02adbb..578ce4f6 100644 --- a/ch00python/index.md +++ b/ch00python/index.md @@ -3,7 +3,7 @@ title: Introduction to Python --- * Why use scripting languages? -* Python. IPython and the IPython notebook. +* Python. IPython and the Jupyter notebook. * Data structures: list, dictionaries, and sets. * List comprehensions * Functions in Python diff --git a/ch01data/060files.ipynb b/ch01data/060files.ipynb index 934601c5..8e76519b 100644 --- a/ch01data/060files.ipynb +++ b/ch01data/060files.ipynb @@ -48,7 +48,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Let's write an example datafile to disk so we can investigate it. We'll just use a plain-text file. IPython notebook provides a way to do this: if we put\n", + "Let's write an example datafile to disk so we can investigate it. We'll just use a plain-text file. Jupyter notebook provides a way to do this: if we put\n", "`%%writefile` at the top of a cell, instead of being interpreted as python, the cell contents are saved to disk." ] }, diff --git a/ch02git/01Intro.ipynb b/ch02git/01Intro.ipynb index 6eab522a..a5800109 100644 --- a/ch02git/01Intro.ipynb +++ b/ch02git/01Intro.ipynb @@ -157,7 +157,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "To make it easy for me to edit, I've built it using IPython notebook." + "To make it easy for me to edit, I've built it using Jupyter notebook." ] }, { @@ -267,7 +267,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "I just need to move this IPython notebook's current directory as well:" + "I just need to move this Jupyter notebook's current directory as well:" ] }, { diff --git a/ch04packaging/010Installation.ipynb b/ch04packaging/010Installation.ipynb index cc8ea524..5cab8ae0 100644 --- a/ch04packaging/010Installation.ipynb +++ b/ch04packaging/010Installation.ipynb @@ -110,7 +110,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Now, close IPython notebook if you have it open, and reopen it. Check your new library is installed with:" + "Now, close the Jupyter notebook if you have it open, and reopen it. Check your new library is installed with:" ] }, { diff --git a/ch05construction/01introduction.ipynb b/ch05construction/01introduction.ipynb index f34bc03d..4625f3df 100644 --- a/ch05construction/01introduction.ipynb +++ b/ch05construction/01introduction.ipynb @@ -23,7 +23,7 @@ "\n", "In this session we're going to look at advice on software *construction*\n", "\n", - "This lecture is available as an [IPython Notebook](http://nbviewer.ipython.org/url/development.rc.ucl.ac.uk/training/engineering/session05/../python/session05.ipynb)\n" + "This lecture is available as an [Jupyter Notebook](http://nbviewer.ipython.org/url/development.rc.ucl.ac.uk/training/engineering/session05/../python/session05.ipynb)\n" ] }, { diff --git a/ch08performance/040cython.ipynb b/ch08performance/040cython.ipynb index ba425d41..8e604095 100644 --- a/ch08performance/040cython.ipynb +++ b/ch08performance/040cython.ipynb @@ -26,7 +26,7 @@ "* The cython code in `.pyx` file will be translated to a `C` file.\n", "* The `C` file will be compiled by a C compiler into a shared library, which will be directely loaded into Python. \n", "\n", - "In ipython notebook, everything is a lot easier. One need only to load Cython extension (`%load_ext Cython`) at the beginning and put `%%cython` mark in front of cells of cython code. Cells with cython mark will be treated as a `.pyx` code and consequently, compiled into C. \n", + "In a Jupyter notebook, everything is a lot easier. One needs only to load the Cython extension (`%load_ext Cython`) at the beginning and put `%%cython` mark in front of cells of cython code. Cells with cython mark will be treated as a `.pyx` code and consequently, compiled into C. \n", "\n", "For details, please see [Building Cython Code](http://docs.cython.org/src/quickstart/build.html).\n" ] diff --git a/index.md b/index.md index 1fd07531..7b47d1cb 100644 --- a/index.md +++ b/index.md @@ -35,7 +35,7 @@ This course may not be audited.

Introduction to Python