Install¶
Release packages¶
This is the simplest way to get started.
- Download the package for your platform from the GitHub Releases page.
- Linux: Choose from
.deb,.rpm, or.zippackages. .deb: Example command:sudo apt-get install ./paccor_2.0r3_amd64.deb.rpm: Example command:sudo dnf install ./paccor-2.0r3.x86_64.rpm.zip: Unpack the.zippackage anywhere you like.- DEB and RPM files are signed. A paccor-public-key.asc file is distributed on the Releases page and can be imported as necessary.
- Windows: Unpack the
.zippackage anywhere you like.
- Linux: Choose from
- Run the executable with the help command line option.
- If you installed via a
.debor.rpmpackage, the executable is available at/opt/paccor/bin/paccor -h. - If you unpacked the
.zippackage, the executable is available atbin/paccor -h.
- If you installed via a
- Run through the tutorials or getting started guide. Each tutorial links to input files that you can download into your working directory.
From Source¶
These steps will build and install paccor into the source repository folder.
- Follow the instructions to Clone the repository
- You may want to check the Requirements page to verify the appropriate version of Java and Dotnet.
- Ensure paccor can build cleanly.
- From a terminal in the repository main folder, run the following command:
./gradlew clean installToSource
Next:
- Read Requirements if you have not checked prerequisites yet
- Read Build if you want to compile and unpack the distribution yourself
- Jump to Getting Started