diff options
author | Konstantin Podsvirov | 2022-10-30 16:55:31 +0000 |
---|---|---|
committer | GitHub | 2022-10-30 16:55:31 +0000 |
commit | f41f28b6627bd2ae0152f468cde80df167889a2d (patch) | |
tree | 9203a851ecba37f5302bea3aac0a810b214d4051 /book/src | |
parent | f6710879d1a1e587d17800682ba0e1045f35e7a9 (diff) |
Update windows install instructions (#4530)
Diffstat (limited to 'book/src')
-rw-r--r-- | book/src/install.md | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/book/src/install.md b/book/src/install.md index 6e2a1f3d..a041d651 100644 --- a/book/src/install.md +++ b/book/src/install.md @@ -52,7 +52,8 @@ sudo xbps-install helix ## Windows -Helix can be installed using [Scoop](https://scoop.sh/) or [Chocolatey](https://chocolatey.org/). +Helix can be installed using [Scoop](https://scoop.sh/), [Chocolatey](https://chocolatey.org/) +or [MSYS2](https://msys2.org/). **Scoop:** @@ -66,6 +67,23 @@ scoop install helix choco install helix ``` +**MSYS2:** + +``` +pacman -S mingw-w64-i686-helix +``` + +or + +``` +pacman -S mingw-w64-x86_64-helix +``` + +or + +``` +pacman -S mingw-w64-ucrt-x86_64-helix +``` ## Build from source |