lego/docs/content/installation/_index.md

72 lines
1.3 KiB
Markdown
Raw Normal View History

---
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.
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
```
## From package managers
2023-08-19 17:03:45 +00:00
- [ArchLinux](https://archlinux.org/packages/extra/x86_64/lego/) (official):
2022-06-16 22:25:42 +00:00
```bash
pacman -S lego
```
- [ArchLinux (AUR)](https://aur.archlinux.org/packages/lego-bin) (official):
```bash
yay -S lego-bin
2022-06-16 22:25:42 +00:00
```
2022-06-16 22:25:42 +00:00
- [FreeBSD (Ports)](https://www.freshports.org/security/lego) (unofficial):
2022-06-16 22:25:42 +00:00
```bash
cd /usr/ports/security/lego && make install clean
```
[Homebrew](https://brew.sh/) user can install [lego](https://formulae.brew.sh/formula/lego) with:
```bash
brew install lego
```
2022-06-16 22:25:42 +00:00
or
2022-06-16 22:25:42 +00:00
```bash
pkg install lego
```
## From sources
Requirements:
- go1.17+
- environment variable: `GO111MODULE=on`
To install the latest version from sources, just run:
```bash
go install github.com/go-acme/lego/v4/cmd/lego@latest
```
or
```bash
git clone git@github.com:go-acme/lego.git
cd lego
make # tests + doc + build
make build # only build
```