Skip to content

Commit

Permalink
Merge pull request #31 from LaunchCodeEducation/installs-patch
Browse files Browse the repository at this point in the history
Installs patch
  • Loading branch information
jwoolbright23 authored May 1, 2024
2 parents cb5f1d5 + a3c06af commit 4c0c91f
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
12 changes: 10 additions & 2 deletions content/installations/install-python/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
16 changes: 16 additions & 0 deletions content/installations/jupyter-notebook/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion content/installations/terminal-setup/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
```

Expand Down

0 comments on commit 4c0c91f

Please sign in to comment.