2022-10-12 18:10:07 +00:00
## Installation With Package Manager
2022-10-12 18:07:11 +00:00
### Arch Linux
There is an community package that can be installed with `pacman` :
```bash
sudo pacman -Syu lapce
```
### Fedora
2023-07-10 06:24:41 +00:00
2022-10-12 18:07:11 +00:00
```bash
sudo dnf copr enable titaniumtown/lapce
sudo dnf install lapce
```
### Flatpak
Lapce is available as a flatpak [here ](https://flathub.org/apps/details/dev.lapce.lapce )
```bash
flatpak install flathub dev.lapce.lapce
```
2023-05-13 08:05:49 +00:00
### Gentoo
2023-07-10 06:24:41 +00:00
Lapce is available in Gentoos user repository GURU.
2023-05-13 08:05:49 +00:00
If the GURU is not activated, it can be with:
```bash
emerge --ask app-eselect/eselect-repository # install eselect repository
2023-07-10 06:24:41 +00:00
eselect repository enable guru
2023-05-13 08:05:49 +00:00
emaint sync -r guru
```
After activating and syncing the GURU repository, lapce can be installed with
```bash
emerge app-editors/lapce
```
2022-10-12 18:07:11 +00:00
### Homebrew
```bash
brew install lapce
```
2023-05-25 18:17:04 +00:00
### nixpkgs
You can find the packages [here ](https://search.nixos.org/packages?channel=unstable&show=lapce&from=0&size=50&sort=relevance&type=packages&query=lapce ):
```bash
# try with nix-shell
nix-shell -p lapce
# on NixOS
nix-env -iA nixos.lapce
# on non-NixOS installs, including macOS
nix-env -iA nixpkgs.lapce
2023-07-10 06:24:41 +00:00
# only if `nix.settings.experimental-features` includes both `nix-command` and `flakes`.
2023-05-25 18:17:04 +00:00
# WARNING: THIS BREAKS nix-env, PROCEED AT YOUR OWN RISK. THIS ALSO INSTALLS FROM UNSTABLE BRANCH.
2023-07-10 06:24:41 +00:00
nix profile install nixpkgs#lapce
2023-05-25 18:17:04 +00:00
```
2022-10-12 18:07:11 +00:00
### Scoop
```bash
scoop install lapce
```
2023-07-10 06:25:08 +00:00
### Void Linux
```bash
sudo xbps-install -S lapce
```
2022-10-12 18:07:11 +00:00
### winget
You can find the packages [here ](https://github.com/microsoft/winget-pkgs/tree/master/manifests/l/Lapce/Lapce ):
```bash
winget install lapce
```
2023-07-10 06:25:08 +00:00