diff options
author | hpkfft.com <paul@hpkfft.com> | 2025-03-22 00:18:14 -0700 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2025-03-24 00:43:06 -0400 |
commit | 4c52a68517521b2f79780b58927030b02c7a53b4 (patch) | |
tree | 9502199ddbdff214d33923f2b1b31bfeabb0381d /docs/markdown | |
parent | 5d5f0ce8c3d4c0c0e83d1e33597748a9a2212bcb (diff) | |
download | meson-4c52a68517521b2f79780b58927030b02c7a53b4.zip meson-4c52a68517521b2f79780b58927030b02c7a53b4.tar.gz meson-4c52a68517521b2f79780b58927030b02c7a53b4.tar.bz2 |
docs: Fix apt-get installation command line
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Quick-guide.md | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/docs/markdown/Quick-guide.md b/docs/markdown/Quick-guide.md index 1491456..9b5cc14 100644 --- a/docs/markdown/Quick-guide.md +++ b/docs/markdown/Quick-guide.md @@ -35,11 +35,10 @@ generate native VS and Xcode project files.* Installation using package manager -- -Ubuntu: +Debian or Ubuntu: ```console -$ sudo apt-get install python3 python3-pip python3-setuptools \ - python3-wheel ninja-build +$ sudo apt-get install python3 ninja-build meson ``` *Due to our frequent release cycle and development speed, distro packaged software may quickly become outdated.* @@ -47,13 +46,19 @@ Installation using Python -- Requirements: **pip3** -The best way to receive the most up-to-date version of Mesonbuild. +This is the best way to receive the most up-to-date version of Mesonbuild. + +First, install dependencies using the package manager: +```console +$ sudo apt-get install python3 python3-pip python3-setuptools \ + python3-wheel ninja-build +``` -Install as a local user (recommended): +Then, install meson as a local user (recommended): ```console $ pip3 install --user meson ``` -Install as root: +Or, install meson as root: ```console # pip3 install meson ``` |