summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorCarl George <carl.george@rackspace.com>2016-10-16 04:06:52 -0500
committerCarl George <carl.george@rackspace.com>2016-10-16 04:13:54 -0500
commitb904c5d9dc994571e2af258eaa089a77e8e8518c (patch)
treeefb40df7090a4a7f6547a2363b156bf3feb075d5 /README.md
parent5a294177969c0c2dc6156d2c13cdb8e861ddbb98 (diff)
Add instructions for installation on Fedora 24+ and RHEL/CentOS 7.
Please note that the referenced copr repository should just be a temporary home while the Fedora/EPEL package review is pending. https://bugzilla.redhat.com/show_bug.cgi?id=1380442
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/README.md b/README.md
index 0192230c..0e38f225 100644
--- a/README.md
+++ b/README.md
@@ -118,6 +118,20 @@ If you're an **Arch Linux** user, then you can install `ripgrep` from the offici
$ pacman -S ripgrep
```
+If you're a **Fedora 24+** user, you can install `ripgrep` from [copr](https://copr.fedorainfracloud.org/coprs/carlgeorge/ripgrep/):
+
+```
+$ dnf copr enable carlgeorge/ripgrep
+$ dnf install ripgrep
+```
+
+If you're a **RHEL/CentOS 7** user, you can install `ripgrep` from [copr](https://copr.fedorainfracloud.org/coprs/carlgeorge/ripgrep/):
+
+```
+$ yum-config-manager --add-repo=https://copr.fedorainfracloud.org/coprs/carlgeorge/ripgrep/repo/epel-7/carlgeorge-ripgrep-epel-7.repo
+$ yum install ripgrep
+```
+
If you're a **Rust programmer**, `ripgrep` can be installed with `cargo`:
```