Skip to content

Commit

Permalink
Merge pull request #192 from aliesbelik/scoop-note
Browse files Browse the repository at this point in the history
Add Scoop installation note
  • Loading branch information
phiresky committed Jan 15, 2024
2 parents fbe85e4 + ebb9613 commit cb6c8dd
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Linux x64, macOS and Windows binaries are available [in GitHub Releases][latestr

#### Arch Linux

`pacman -S ripgrep-all`.
`pacman -S ripgrep-all`

#### Nix

Expand All @@ -63,15 +63,21 @@ rga will search for all binaries it calls in \$PATH and the directory itself is

### Windows

Install ripgrep-all via [Chocolatey](https://chocolatey.org/packages/ripgrep-all):
Note that installing via [chocolatey](https://chocolatey.org/packages/ripgrep-all) or [scoop](https://github.com/ScoopInstaller/Main/blob/master/bucket/rga.json) is the only supported download method. If you download the binary from releases manually, you will not get the dependencies (for example pdftotext from poppler).

If you get an error like `VCRUNTIME140.DLL could not be found`, you need to install [vc_redist.x64.exe](https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads).

#### Chocolatey

```
choco install ripgrep-all
```

Note that installing via chocolatey or scoop is the only supported download method. If you download the binary from releases manually, you will not get the dependencies (for example pdftotext from poppler).
#### Scoop

If you get an error like `VCRUNTIME140.DLL could not be found`, you need to install [vc_redist.x64.exe](https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads).
```
scoop install rga
```

### Homebrew/Linuxbrew

Expand All @@ -88,9 +94,9 @@ To install the dependencies that are each not strictly necessary but very useful
rga should compile with stable Rust (v1.36.0+, check with `rustc --version`). To build it, run the following (or the equivalent in your OS):

```
~$ apt install build-essential pandoc poppler-utils ffmpeg ripgrep cargo
~$ cargo install --locked ripgrep_all
~$ rga --version # this should work now
~$ apt install build-essential pandoc poppler-utils ffmpeg ripgrep cargo
~$ cargo install --locked ripgrep_all
~$ rga --version # this should work now
```

## Available Adapters
Expand Down

0 comments on commit cb6c8dd

Please sign in to comment.