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

# Installation

> Learn how to install OP Deployer from binaries or source.

OP Deployer can be installed both from pre-built binaries and from source. This guide will walk you through both
methods.

## Install From Binaries

Installing OP Deployer from pre-built binaries is the easiest and most preferred way to get started. To install from
binaries, download the latest release from the [releases page](https://github.com/ethereum-optimism/optimism/releases?q=op-deployer\&expanded=true) and extract the binary to a directory in your
`$PATH`.

## Install From Source

To install from source, you will need Go, `just`, and `git`. Then, run the following:

```shell theme={null}
git clone git@github.com:ethereum-optimism/optimism.git # you can skip this if you already have the repo
cd optimism/op-deployer
just build
cp ./bin/op-deployer /usr/local/bin/op-deployer # or any other directory in your $PATH
```
