2019-03-08 18:47:06 +00:00
---
title: "Installation"
date: 2019-03-03T16:39:46+01:00
weight: 1
draft: false
---
## Binaries
2019-03-11 16:56:48 +00:00
To get the binary just download the latest release for your OS/Arch from [the release page ](https://github.com/go-acme/lego/releases ) and put the binary somewhere convenient.
2019-03-08 18:47:06 +00:00
lego does not assume anything about the location you run it from.
## From Docker
```bash
2019-03-11 16:56:48 +00:00
docker run goacme/lego -h
2019-03-08 18:47:06 +00:00
```
## From package managers
- [ArchLinux (AUR) ](https://aur.archlinux.org/packages/lego ):
```bash
yay -S lego
```
**Note**: only the package manager for Arch Linux is officially supported by the lego team.
2019-07-27 05:08:04 +00:00
- [FreeBSD (Ports) ](https://www.freshports.org/security/lego ):
```bash
cd /usr/ports/security/lego & & make install clean
```
or
```bash
pkg install lego
```
2019-03-08 18:47:06 +00:00
## From sources
2019-08-13 15:07:06 +00:00
Requirements:
2021-02-17 08:02:44 +00:00
- `go` v1.15+
2019-08-13 15:07:06 +00:00
- environment variable: `GO111MODULE=on`
2019-10-18 18:08:13 +00:00
To install the latest development version from sources, just run:
2019-03-08 18:47:06 +00:00
```bash
2020-09-02 01:20:01 +00:00
go get -u github.com/go-acme/lego/v4/cmd/lego
2019-03-08 18:47:06 +00:00
```
2020-05-16 22:57:55 +00:00
or
```bash
git clone git@github.com:go-acme/lego.git
make # tests + doc + build
make build # only build
```