1
0
mirror of https://github.com/go-acme/lego.git synced 2025-01-09 10:07:27 +02:00
lego/docs/content/installation/_index.md

94 lines
1.7 KiB
Markdown
Raw Normal View History

---
title: "Installation"
date: 2019-03-03T16:39:46+01:00
weight: 1
draft: false
---
## Binaries
2019-03-11 18:56:48 +02: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 18:56:48 +02:00
docker run goacme/lego -h
```
## From package managers
2023-08-19 19:03:45 +02:00
- [ArchLinux](https://archlinux.org/packages/extra/x86_64/lego/) (official):
2022-06-17 00:25:42 +02:00
```bash
pacman -S lego
```
- [ArchLinux (AUR)](https://aur.archlinux.org/packages/lego-bin) (official):
```bash
yay -S lego-bin
2022-06-17 00:25:42 +02:00
```
- [Snap](https://snapcraft.io/lego) (official):
```bash
sudo snap install lego
```
2024-06-20 20:37:37 +02:00
Note: The snap can only write to the `/var/snap/lego/common/.lego` directory.
2022-06-17 00:25:42 +02:00
- [FreeBSD (Ports)](https://www.freshports.org/security/lego) (unofficial):
2022-06-17 00:25:42 +02:00
```bash
pkg install lego
2022-06-17 00:25:42 +02:00
```
- [Gentoo](https://gitweb.gentoo.org/repo/proj/guru.git/tree/app-crypt/lego) (unofficial):
You can [enable GURU](https://wiki.gentoo.org/wiki/Project:GURU/Information_for_End_Users) repository and then:
```bash
emerge app-crypt/lego
```
- [Homebrew](https://formulae.brew.sh/formula/lego) (unofficial):
```bash
brew install lego
```
2022-06-17 00:25:42 +02:00
or
2022-06-17 00:25:42 +02:00
```bash
pkg install lego
```
- [OpenBSD (Ports)](https://openports.pl/path/security/lego) (unofficial):
```bash
pkg_add lego
```
## From sources
Requirements:
2024-03-20 21:30:35 +02:00
- go1.22+.
- 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
```