Install NAPE from Official NAPE Central Repo
The Official NAPE Binary Repository is our recommended approach for installing all the NAPE components. Learn how to install all of the NAPE components form the official binary repo for the supported operating systems and cpu architectures.
The Official NAPE Binary Repository
The Official NAPE Binary Repository is located at: https://repo.napecentral.com
To download a specific binary, you will need 3 pieces of information:
All binaries can be downloaded using the following scheme:
https://repo.napecentral.com/{NAPE-Component}/{Version}/{Operating-System}/{CPU-Architecture}/{Binary-Name}
NAPE-Component
nape-cli
- NAPE CLI.nape-evaluator
- The NAPE Evaluator CLI
Version
The version number you want to download. NAPE follows the Semantic Versioning (Semver) scheme.
For example:
1.0.0
Operating-System
linux-gnu
- Linux operating systems (RHEL, Ubuntu, Debian-based distributions, etc.) that use the GNU C Linkerlinux-musl
- Linux operating systems (Alpine, KISS, etc.) that use the MUSL C Linkermacos
- All MacOS operating systemswindows
- All Microsoft Windows operating systems
CPU-Architecture
x86_64
aarch64
Binary-Name
NAPE CLI
For Linux and MacOS -
nape
For Windows -
nape.exe
NAPE CLI - Download and Install
Linux and MacOS Install
Download the binary
Linux GNU - x86_64
curl -o nape https://repo.napecentral.com/nape-cli/1.0.0/linux-gnu/x86_64/napeMacOS - x86_64
curl -o nape https://repo.napecentral.com/nape-cli/1.0.0/macos/x86_64/napeMacOS - aarch64
curl -o nape https://repo.napecentral.com/nape-cli/1.0.0/macos/aarch64/nape
Make the Binary Executable
chmod +x napeMove the Binary to a Directory in Your PATH
sudo mv nape /usr/local/bin/Verify the Installation
nape --versionIf installed correctly, you'll see the following as a response:
NAPE CLI 1.0.0
Now that NAPE is installed, check out the Tutorials.