NetTraceX can be installed in several ways:
If you have Go installed:
go install github.com/nettracex/nettracex-tui@latestOr install a specific version:
go install github.com/nettracex/nettracex-tui@v0.1.3The binary will be installed as nettracex-tui in your $GOPATH/bin directory.
Note: Make sure $GOPATH/bin is in your PATH:
$env:PATH += ";$(go env GOPATH)\bin"export PATH="$(go env GOPATH)/bin:$PATH"Download the latest release from GitHub:
- Go to Releases
- Download the appropriate binary for your platform:
- Windows:
nettracex_Windows_x86_64.zip - Linux:
nettracex_Linux_x86_64.tar.gzornettracex_Linux_arm64.tar.gz - macOS:
nettracex_Darwin_x86_64.tar.gzornettracex_Darwin_arm64.tar.gz
- Windows:
- Extract and run the binary
git clone https://github.com/nettracex/nettracex-tui.git
cd nettracex-tui
go build -o nettracex .After installation, verify it works:
# If installed via go install
nettracex-tui --version
# If using downloaded binary
./nettracex --versionRun the interactive TUI:
nettracex-tuiOr show help:
nettracex-tui --helpgo install github.com/nettracex/nettracex-tui@latestDownload the latest release and replace your existing binary.
- Ensure
$GOPATH/binis in your PATH - On Windows, you may need to restart your terminal after adding to PATH
chmod +x nettracexSome antivirus software may flag Go binaries. Add an exception for the binary if needed.