> ## Documentation Index
> Fetch the complete documentation index at: https://projectdiscovery-subfinder-reference-blog.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Installing Katana

> Learn about how to install Katana

<Tabs>
  <Tab title="Go">
    <Note> Enter the command below in a terminal to install ProjectDiscovery's Katana using Go. </Note>

    ```bash
    go install github.com/projectdiscovery/katana/cmd/katana@latest
    ```
  </Tab>

  <Tab title="Docker">
    <Note> Enter the command below in a terminal to install ProjectDiscovery's Katana using Go. </Note>
    To install/update Docker to the latest tag

    ```bash
    docker pull projectdiscovery/katana:latest
    ```
  </Tab>

  <Tab title="GitHub">
    <Note> Enter the command below in a terminal to install ProjectDiscovery's Katana using GitHub. </Note>

    ```bash
    go install github.com/projectdiscovery/katana/cmd/katana@latest
    ```
  </Tab>

  <Tab title="Binary">
    ```bash
    https://github.com/projectdiscovery/katana/releases
    ```

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

## Installation Notes

* Katana requires the latest version of [**Go**](https://go.dev/doc/install)
* 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/katana`
