Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

E: Package 'python-certbot-nginx' has no installation candidate

When I try to install Certbot for Nginx and run

sudo apt-get install python-certbot-nginx

I get

E: Package 'python-certbot-nginx' has no installation candidate

How to install Certbot for Nginx?

like image 228
Jozott Avatar asked Oct 28 '20 10:10

Jozott


1 Answers

Since Python2 is no longer supported you just need to ask for Python3.

So

sudo apt-get install python3-certbot-nginx

should solve your Problem.

like image 100
Jozott Avatar answered Nov 13 '22 12:11

Jozott