Skip to content

Commit ed9e3e4

Browse files
author
Jorrit Poelen
committed
add rpm install example
1 parent 95a2895 commit ed9e3e4

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ sudo sh -c '(curl -L https://github.com/globalbioticinteractions/nomer/releases/
6262

6363
With this, you can now run things like ```nomer version``` instead of ```java -jar [some long dir path]/nomer.jar version``` .
6464

65-
Note that a debian package (Debian, Ubuntu, etc) is also available for use with the [Advanced Package Tool (or apt)](https://en.wikipedia.org/wiki/APT_(software)) via:
65+
Note that [nomer.deb](https://github.com/globalbioticinteractions/nomer/releases/latest/download/nomer.deb) (Debian, Ubuntu, etc) and [preston.rpm](https://github.com/globalbioticinteractions/nomer/latest/download/nomer.rpm) (RedHat, Fedora, etc) packages are also available.
66+
67+
### deb package example
6668

6769
```console
6870
sudo apt update
@@ -73,6 +75,15 @@ sudo apt install ./nomer.deb
7375

7476
To remove type ```sudo apt remove nomer```.
7577

78+
### rpm package example
79+
80+
```console
81+
curl -L https://github.com/globalbioticinteractions/nomer/releases/latest/download/nomer.rpm > nomer.rpm
82+
sudo dnf install ./nomer.rpm
83+
```
84+
85+
To remove type ```sudo dnf remove nomer```.
86+
7687

7788
### Maven, Gradle, SBT
7889
Nomer is made available through a [maven](https://maven.apache.org) repository.

0 commit comments

Comments
 (0)