Skip to content

Commit

Permalink
📝 Move python installation down for ubuntu
Browse files Browse the repository at this point in the history
This movement, along with the info call outs, should make it more clear
that you only need to install python 3.10 from the deadsnakes repo if
you are on Ubuntu 20.04.
  • Loading branch information
kammce committed Apr 2, 2024
1 parent bc359ca commit d5e6219
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions mkdocs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,6 @@ What you will need in order to get started with libhal.

=== "Ubuntu 20.04+"

Install Python 3.10 (only required for 20.04):

```
sudo apt update
sudo apt install software-properties-common -y
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt install Python3.10
```

Install `llvm` toolchain & APT repos:

```
Expand All @@ -33,6 +24,17 @@ What you will need in order to get started with libhal.
sudo apt install libc++-17-dev libc++abi-17-dev
```

!!! info

If you are using 20.04 you will need to upgrade Python to 3.10:

```
sudo apt update
sudo apt install software-properties-common -y
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt install Python3.10
```

Installing conan:

```
Expand Down

0 comments on commit d5e6219

Please sign in to comment.