From b07725b0a54fb99e3d69e6f05ce69ef1af4959eb Mon Sep 17 00:00:00 2001 From: John Woolbright Date: Mon, 22 Apr 2024 11:16:56 -0500 Subject: [PATCH 1/3] updated install instructions slightly with minor notes --- content/installations/install-python/_index.md | 12 ++++++++++-- content/installations/jupyter-notebook/_index.md | 16 ++++++++++++++++ 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/content/installations/install-python/_index.md b/content/installations/install-python/_index.md index ac771c3c..2008a78d 100644 --- a/content/installations/install-python/_index.md +++ b/content/installations/install-python/_index.md @@ -21,16 +21,24 @@ The image below depicts the downloads page for Python. Within the highlighted ar ## Windows Users -Download the most recent stable release for the `Windows` operating system. At the time of writing this the most recent stable version is `3.11.8`. +Download the most recent stable release for the `Windows` operating system. At the time this page was last edited, this the most recent stable version is `3.12.3`. ![Windows stable release for python3 highlighted on the windows operating system download page for python](pictures/stable-release-windows.png?classes=border) +{{% notice blue Note %}} +The above image depicts version `3.11.8` but you will see a different version when visiting the download page! +{{% /notice %}} + ## MacOS Users -Download the most recent stable release for the `MacOS` operating system. At the time of writing this the most recent stable version is `3.11.8`. +Download the most recent stable release for the `MacOS` operating system. At the time of writing this the most recent stable version is `3.12.3`. ![MacOS stable release for python3 highlighted on the MacOS operating system download page for python](pictures/stable-release-mac.png?classes=border) +{{% notice blue Note %}} +The above image depicts version `3.11.8` but you will see a different version when visiting the download page! +{{% /notice %}} + ### Verification Once you have downloaded python open up your terminal and type in the following command: diff --git a/content/installations/jupyter-notebook/_index.md b/content/installations/jupyter-notebook/_index.md index d0ee2d47..753f79b6 100644 --- a/content/installations/jupyter-notebook/_index.md +++ b/content/installations/jupyter-notebook/_index.md @@ -11,10 +11,26 @@ weight = 5 The following command will install Jupyter Notebook onto your machine: +{{% notice blue Note "rocket" %}} +`pip` is a package manager that is included with any Python installation. You can verify the version and installation of pip by typing in the following command: + +```console +python3 -m pip --version +``` +{{% /notice %}} + ```console pip install notebook ``` +{{% notice orange Warning "rocket" %}} +If the above command produces an error you may need to specify `pip3` like so: + +```console +pip3 install notebook +``` +{{% /notice %}} + ### Start the App Server Open Jupyter Notebook with the following command: From 37088d14f14bdcbad5dda24fe310641c122fdd59 Mon Sep 17 00:00:00 2001 From: John Woolbright Date: Mon, 22 Apr 2024 13:06:02 -0500 Subject: [PATCH 2/3] minor reorder of notices --- content/installations/jupyter-notebook/_index.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/content/installations/jupyter-notebook/_index.md b/content/installations/jupyter-notebook/_index.md index 753f79b6..97f595a5 100644 --- a/content/installations/jupyter-notebook/_index.md +++ b/content/installations/jupyter-notebook/_index.md @@ -11,14 +11,6 @@ weight = 5 The following command will install Jupyter Notebook onto your machine: -{{% notice blue Note "rocket" %}} -`pip` is a package manager that is included with any Python installation. You can verify the version and installation of pip by typing in the following command: - -```console -python3 -m pip --version -``` -{{% /notice %}} - ```console pip install notebook ``` @@ -31,6 +23,14 @@ pip3 install notebook ``` {{% /notice %}} +{{% notice blue Note "rocket" %}} +`pip` is a package manager that is included with any Python installation. You can verify the version and installation of pip by typing in the following command: + +```console +python3 -m pip --version +``` +{{% /notice %}} + ### Start the App Server Open Jupyter Notebook with the following command: From a3c06af6d494576f4f7f000103f3f571f86f1785 Mon Sep 17 00:00:00 2001 From: John Woolbright Date: Mon, 22 Apr 2024 13:07:07 -0500 Subject: [PATCH 3/3] removed $ from an example command --- content/installations/terminal-setup/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/installations/terminal-setup/_index.md b/content/installations/terminal-setup/_index.md index 7671f0d6..85e7f88d 100644 --- a/content/installations/terminal-setup/_index.md +++ b/content/installations/terminal-setup/_index.md @@ -43,7 +43,7 @@ If you are still struggling to find the Terminal application, you can do a simpl Some terminal commands require the addition of **sudo** at the front of the command. This name gives the user *super user* rights. `sudo` is often required when installing software from the terminal. ```bash -$ sudo install mocha +sudo install mocha Password: ```