Installation
NetsCLI publishes command-line binaries and desktop installers through GitHub Releases. The CLI/TUI binary is named netscli. The desktop app is distributed as NetsCLI Desktop.
Recommended installs
Section titled “Recommended installs”| Platform | Recommended path | Installs |
|---|---|---|
| Windows | winget install fstubner.netscli |
CLI and TUI |
| Windows | winget install fstubner.netscli.gui |
Desktop app |
| macOS | Homebrew or install script | CLI and TUI |
| Linux | Install script, Homebrew, AUR, or release artifact | CLI and TUI |
| Rust users | cargo install netscli |
CLI and TUI from crates.io |
Windows
Section titled “Windows”Use winget for the hash-verified install path:
winget install fstubner.netscliThe desktop app is distributed separately:
winget install fstubner.netscli.guiScoop is also supported, for both the CLI and the desktop app:
scoop bucket add fstubner https://github.com/fstubner/scoop-bucketscoop install netscliscoop install netscli-guiOr the PowerShell install script, which picks the right asset for your machine:
iwr -useb https://netscli.com/install.ps1 | iexDirect Windows installers are attached to GitHub Releases. They are not Authenticode-signed yet, so Windows may show a publisher warning when installing outside winget. The winget manifests verify release asset hashes.
Use Homebrew when available:
brew tap fstubner/tap && brew install netscliOr use the install script:
curl -fsSL https://netscli.com/install.sh | bashDesktop .dmg artifacts are attached to GitHub Releases where the release workflow publishes them. macOS may require the usual first-run approval for unsigned or independently distributed apps.
Use the install script:
curl -fsSL https://netscli.com/install.sh | bashInstall with Homebrew on Linux when you use Linuxbrew:
brew tap fstubner/tap && brew install netscliOn Arch-based systems with an AUR helper:
yay -S netscli-binRelease artifacts may include Linux CLI binaries and desktop packages such as .deb or .AppImage, depending on the release.
If Rust is installed:
cargo install netscliCargo installs the CLI/TUI binary. It does not install the desktop app.
Updating
Section titled “Updating”Use the same package manager you installed with.
Update the CLI and TUI on Windows:
winget upgrade fstubner.netscliUpdate the desktop app on Windows:
winget upgrade fstubner.netscli.guiUpdate a Homebrew install:
brew upgrade netscliFor direct release artifacts, download the latest GitHub release and replace the previous install with the matching package for your platform.
Verifying a download
Section titled “Verifying a download”Every CLI and desktop release asset is checksummed and signed, and both can be checked before you run anything.
Checksums
Section titled “Checksums”Each asset ships a .sha256 sidecar next to it on the release page. The
install scripts fetch and check it for you, and refuse to install if it is
missing — a failed checksum request is not treated as permission to skip
verification. To check a manual download yourself:
# Linux / macOScurl -fsSLO https://github.com/fstubner/netscli/releases/latest/download/netscli-linux-x86_64curl -fsSLO https://github.com/fstubner/netscli/releases/latest/download/netscli-linux-x86_64.sha256sha256sum -c netscli-linux-x86_64.sha256# Windows(Get-FileHash -Algorithm SHA256 .\netscli-windows-x86_64.exe).Hash.ToLower()# compare against the contents of netscli-windows-x86_64.exe.sha256Signatures
Section titled “Signatures”A checksum only proves the file matches its own sidecar, and both come from the same place. The signature is what ties the asset to the workflow run that built it.
Every asset is signed keylessly with Sigstore
cosign in CI, using the GitHub
Actions OIDC identity — no key management, and the signature is bound to the
exact run. Each asset ships a .sig and a .pem beside it:
cosign verify-blob \ --signature netscli-linux-x86_64.sig \ --certificate netscli-linux-x86_64.pem \ --certificate-identity-regexp 'https://github.com/fstubner/netscli/.github/workflows/release\.yml@.*' \ --certificate-oidc-issuer https://token.actions.githubusercontent.com \ netscli-linux-x86_64Substitute the asset name you downloaded — the same command works for the
desktop .msi, .dmg, .deb and .AppImage. It needs the cosign
CLI. A pass
confirms the asset was built and signed by this repository’s release workflow
and has not been altered since.
This is separate from platform code signing, which the installers do not yet have — see the Windows and macOS sections above for what your OS will say on first run.
Packet capture
Section titled “Packet capture”None of the installs above include packet capture. It is a compile-time feature, and the default builds — the desktop installers, the standard CLI release assets, and cargo install netscli — are built without it. That keeps the default install free of any libpcap/Npcap dependency and avoids redistributing Npcap.
Getting it is a deliberate extra step, and the rest of this section is how.
Normal scan, discovery, DNS, ARP, ping, trace, and interface workflows are unaffected and need none of this.
If you do want packet capture, you need both a build that has the feature compiled in and the system capture library.
CLI with packet capture
Section titled “CLI with packet capture”The install script does both at once — it selects the -pcap build and installs the system library:
curl -fsSL https://netscli.com/install.sh | NETSCLI_PCAP=1 bash$env:NETSCLI_PCAP=1; iwr -useb https://netscli.com/install.ps1 | iexOn Windows this runs the Npcap installer, which needs administrator rights. Add NETSCLI_SKIP_NPCAP=1 (or NETSCLI_SKIP_LIBPCAP=1 on Unix) if you manage the capture library yourself.
Alternatively, download the -pcap asset directly from the latest release — netscli-linux-x86_64-pcap, netscli-macos-aarch64-pcap, netscli-windows-x86_64-pcap.exe, and so on — and install the capture library separately. There is no -pcap musl build.
Or build it yourself, which needs the development headers (libpcap-dev on Debian/Ubuntu, or the Npcap SDK on Windows):
cargo install netscli --features pcapDesktop app with packet capture
Section titled “Desktop app with packet capture”There is no published desktop installer with packet capture. The Packet Capture tool appears in the app but shows setup guidance instead of running. To get a capture-capable desktop build you have to build from source:
cd apps/netscli-guinpm installnpm run tauri build -- --features pcapSystem requirements
Section titled “System requirements”| Platform | Requirement |
|---|---|
| Windows | Npcap installed. wpcap.dll lives in C:\Windows\System32\Npcap\, which is not on PATH by default — add it, or let NETSCLI_PCAP=1 do it. |
| Linux | libpcap installed, plus capture permissions (CAP_NET_RAW or root). |
| macOS | libpcap available, plus capture permissions where required. |
Checking what you have
Section titled “Checking what you have”netscli doctor works on every build and reports whether packet capture is compiled in and whether the runtime library is present:
netscli doctorNote that netscli pcap --check only exists on builds that were compiled with the feature — on a standard build the subcommand is absent entirely and you will get an “unrecognized subcommand” error rather than a useful message. Use doctor to find out which build you have.