Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'book/src/package-managers.md')
| -rw-r--r-- | book/src/package-managers.md | 27 |
1 files changed, 11 insertions, 16 deletions
diff --git a/book/src/package-managers.md b/book/src/package-managers.md index c235d2e0..3cfd3100 100644 --- a/book/src/package-managers.md +++ b/book/src/package-managers.md @@ -1,7 +1,7 @@ ## Package managers - [Linux](#linux) - - [Ubuntu/Debian](#ubuntudebian) + - [Ubuntu](#ubuntu) - [Fedora/RHEL](#fedorarhel) - [Arch Linux extra](#arch-linux-extra) - [NixOS](#nixos) @@ -17,18 +17,21 @@ - [Chocolatey](#chocolatey) - [MSYS2](#msys2) -[](https://repology.org/project/helix-editor/versions) +[](https://repology.org/project/helix/versions) ## Linux The following third party repositories are available: -### Ubuntu/Debian +### Ubuntu -Install the Debian package [from the release page](https://github.com/helix-editor/helix/releases/latest). +Add the `PPA` for Helix: -If you are running a system older than Ubuntu 22.04, Mint 21, or Debian 12, you can build the `.deb` file locally -[from source](./building-from-source.md#building-the-debian-package). +```sh +sudo add-apt-repository ppa:maveonair/helix-editor +sudo apt update +sudo apt install helix +``` ### Fedora/RHEL @@ -98,15 +101,7 @@ Download the official Helix AppImage from the [latest releases](https://github.c chmod +x helix-*.AppImage # change permission for executable mode ./helix-*.AppImage # run helix ``` - -You can optionally [add the `.desktop` file](./building-from-source.md#configure-the-desktop-shortcut). Helix must be installed in `PATH` with the name `hx`. For example: -```sh -mkdir -p "$HOME/.local/bin" -mv helix-*.AppImage "$HOME/.local/bin/hx" -``` - -and make sure `~/.local/bin` is in your `PATH`. - + ## macOS ### Homebrew Core @@ -118,7 +113,7 @@ brew install helix ### MacPorts ```sh -sudo port install helix +port install helix ``` ## Windows |