Home / Docs / Installation

Installation

Multiple ways to install Falcn depending on your environment and requirements.

Quick Install (Recommended)

# Linux/macOS
curl -sSL https://falcn.io/install | sh

# Or with wget
wget -qO- https://falcn.io/install | sh

This installs the latest binary to /usr/local/bin/falcn.

Docker

# Pull the latest image
docker pull vanali/falcn:latest

# Run a scan
docker run --rm -v $(pwd):/workspace falcn/falcn scan /workspace

Go Install

If you have Go 1.21+ installed:

go install github.com/falcn-io/falcn@latest

Build from Source

git clone https://github.com/falcn-io/falcn.git
cd falcn
make build
./bin/falcn --version

Package Managers

Homebrew (macOS/Linux)

brew tap falcn-io/falcn
brew install falcn

APT (Debian/Ubuntu)

curl -fsSL https://falcn.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/falcn.gpg
echo "deb [signed-by=/usr/share/keyrings/falcn.gpg] https://apt.falcn.io stable main" | sudo tee /etc/apt/sources.list.d/falcn.list
sudo apt update && sudo apt install falcn

Verify Installation

falcn --version
# Output: falcn version 2.0.0

💡 Next Steps

After installation, see Configuration to customize Falcn for your needs.