Skip to content

How to install AegisPass

Homebrew

Homebrew is one of the quickest ways to install AegisPass on macOS and Linux and you can stay up to date with the latest version.

brew install lucasloureiror/tools/aegis

Go builtin install command

If you have Go installed, you can use the following command to install AegisPass:

go install github.com/lucasloureiror/AegisPass/cmd/aegis@latest

If you don't have $GOPATH/bin in your PATH for your shell, don't forget to add it so you can use AegisPass globally.

This command will show you the path to your GOPATH so you can add it to your PATH in your shell:

go env GOPATH

Download the binary from the releases page

You can also download the binary from the releases page and add it to your PATH.

Building the Project

If you want to build AegisPass yourself you can use the makefile with the following steps:

  1. Clone the repository:
git clone https://github.com/lucasloureiror/AegisPass.git
  1. Change to the project directory:
cd AegisPass
  1. Run the appropriate Makefile:

For Linux, Windows and macOS:

make build

This will compile the AegisPass project and create an executable binary in the build/bin folder called aegis.exe. Add to your path to use it globally.