diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-06-10 20:58:32 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-06-10 20:58:32 -0400 |
commit | 8a81dbb5fb7fe1d60b2aebec12c2c87dcda477c1 (patch) | |
tree | bba4b1e62d1e90e3e60d3b4327e0656654610169 /docs | |
parent | 8527102bb9dcff33574de91bcdcf32b2aabddacc (diff) |
Split apt update and install into two sections.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docs/dev-setup.md | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/docs/docs/dev-setup.md b/docs/docs/dev-setup.md index b6edc4f..5eacd87 100644 --- a/docs/docs/dev-setup.md +++ b/docs/docs/dev-setup.md @@ -19,10 +19,22 @@ A unix-like environment with the following base packages installed: ### 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 sudo apt update +``` + +#### Install Dependencies + +With the latest package information, you can now install the base dependencies: + +```bash sudo apt install -y \ git \ wget \ |