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..97f595a5 100644 --- a/content/installations/jupyter-notebook/_index.md +++ b/content/installations/jupyter-notebook/_index.md @@ -15,6 +15,22 @@ The following command will install Jupyter Notebook onto your machine: 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 %}} + +{{% 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: 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: ```