如何为 DNS Made Easy 安装 certbot DNS 插件?

How to install certbot DNS plugin for DNS Made Easy?

我在 Ubuntu 16.04 上,我想获得通配符证书,我的 DNS 提供商在列表中 - https://certbot.eff.org/docs/using.html#dns-plugins
但是当我尝试执行步骤 5. Install correct DNS plugin

sudo apt-get install python3-certbot-dns-dnsmadeeasy

我总是得到

Unable to locate package python3-certbot-dns-dnsmadeeasy

虽然我可以在 certbot github page 上看到它,但我不知道如何安装此插件以与 certbot 一起使用。

这不是如何安装 certbot dnsmadeeasy 插件的直接答案,但它对我有用,所以我选择了这个解决方案。
我使用了他们的 Docker 图片 - https://hub.docker.com/r/certbot/dns-dnsmadeeasy
它与安装了 dnsmadeeasy 插件的 certbot 一样工作,因此您可以通过 运行:

获取证书
docker run --rm -it --name certbot-dnsmadeeasy \
  -v {path_to_your_dnsmadeeasy.ini}:/dnsmadeeasy.ini \
  -v {path_to_where_you_want_to_store_certs}:/etc/letsencrypt \
  certbot/dns-dnsmadeeasy certonly \
  --dns-dnsmadeeasy \
  --dns-dnsmadeeasy-credentials /dnsmadeeasy.ini \
  -d {yourdomain}

您甚至不需要在计算机上安装 certbot。