> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectdiscovery.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Installing Naabu

> Learn about how to install Naabu and get started

<Tabs>
  <Tab title="Go">
    <Note> Enter the command below in a terminal to install ProjectDiscovery's Naabu using Go. </Note>
    <Note> before installing naabu, make sure to install libpcap library for packet capturing. </Note>

    ```bash theme={null}
    go install -v github.com/projectdiscovery/naabu/v2/cmd/naabu@latest
    ```
  </Tab>

  <Tab title="Binary">
    ```bash theme={null}
    https://github.com/projectdiscovery/naabu/releases/
    ```

    <Tip>
      * Download the latest binary for your OS.
      * Unzip the ready to run binary.
    </Tip>
  </Tab>
</Tabs>

## Installation Notes

* Naabu requires the latest version of [**Go**](https://go.dev/doc/install)
* To install libcap on Linux: `sudo apt install -y libpcap-dev`, on Mac: `brew install libpcap`
* Add the Go bin path to the system paths. On OSX or Linux, in your terminal use

```
echo export PATH=$PATH:$HOME/go/bin >> $HOME/.bashrc
source $home/.bashrc
```

* To add the Go bin path in Windows, [click this link for instructions.](https://www.architectryan.com/2018/03/17/add-to-the-path-on-windows-10/)
* The binary will be located in `$home/go/bin/naabu`
