aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-11-27 01:37:54 +1100
committerGitHub <noreply@github.com>2020-11-26 14:37:54 +0000
commitc21d5a09735e84412ee5b3efb4c3f5d3fc734393 (patch)
treec2b8405f45fb6f00b063561056fca4c5aad28bf8 /docs
parent3afe0ea9b9f67ae33f54c1393b15d988764241a2 (diff)
downloadqmk_firmware-c21d5a09735e84412ee5b3efb4c3f5d3fc734393.tar.gz
qmk_firmware-c21d5a09735e84412ee5b3efb4c3f5d3fc734393.zip
Refactor qmk_install.sh (#10681)
Diffstat (limited to 'docs')
-rw-r--r--docs/newbs_getting_started.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/newbs_getting_started.md b/docs/newbs_getting_started.md
index dfb2d54fc..eee087e4c 100644
--- a/docs/newbs_getting_started.md
+++ b/docs/newbs_getting_started.md
@@ -60,9 +60,12 @@ After Homebrew is installed run this command:
60 60
61You will need to install Git and Python. It's very likely that you already have both, but if not, one of the following commands should install them: 61You will need to install Git and Python. It's very likely that you already have both, but if not, one of the following commands should install them:
62 62
63* Debian / Ubuntu / Devuan: `sudo apt install git python3 python3-pip` 63* Debian / Ubuntu / Devuan: `sudo apt install -y git python3-pip`
64* Fedora / Red Hat / CentOS: `sudo yum install git python3 python3-pip` 64* Fedora / Red Hat / CentOS: `sudo yum -y install git python3-pip`
65* Arch / Manjaro: `sudo pacman -S git python python-pip python-setuptools libffi` 65* Arch / Manjaro: `sudo pacman --needed --noconfirm -S git python-pip libffi`
66* Void: `sudo xbps-install -y git python3-pip`
67* Solus: `sudo eopkg -y install git python3`
68* Sabayon: `sudo equo install dev-vcs/git dev-python/pip`
66 69
67Install the global CLI to bootstrap your system: 70Install the global CLI to bootstrap your system:
68 71