mirror of
https://github.com/zmkfirmware/zmk.git
synced 2026-03-20 04:55:20 -05:00
Split apt update and install into two sections.
This commit is contained in:
@@ -19,10 +19,22 @@ A unix-like environment with the following base packages installed:
|
|||||||
|
|
||||||
### Debian/Ubuntu
|
### Debian/Ubuntu
|
||||||
|
|
||||||
On Debian and Ubuntu, this can be accomplished with:
|
On Debian and Ubuntu, we'll use apt to install our base dependencies:
|
||||||
|
|
||||||
|
#### Apt Update
|
||||||
|
|
||||||
|
First, if you haven't updated recently, or if this is a new install from WSL,
|
||||||
|
you should update to get the latest package information:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo apt update
|
sudo apt update
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Install Dependencies
|
||||||
|
|
||||||
|
With the latest package information, you can now install the base dependencies:
|
||||||
|
|
||||||
|
```bash
|
||||||
sudo apt install -y \
|
sudo apt install -y \
|
||||||
git \
|
git \
|
||||||
wget \
|
wget \
|
||||||
|
|||||||
Reference in New Issue
Block a user