Skip to content
Home » Instalando LetsEncrypt en Debian 6 – Squeeze

Instalando LetsEncrypt en Debian 6 – Squeeze

Solo hay que copiar y pegar esto (sabiendo lo que hacemos claro está):

apt-get install build-essential python-pip git libssl-dev libffi-dev python-dev
pip install pythonbrew
pythonbrew_install
source “$HOME/.pythonbrew/etc/bashrc”

Actualizando la versión de Python a la 2.7.10 :

pythonbrew install 2.7.10
pythonbrew switch 2.7.10
pythonbrew use 2.7.10

Instalando algunas dependencias de Python:

Aquí cuidado porque tenemos que utilizar la versión 2.7 de pip, para ellos la instalamos primero:

wget –no-check-certificate https://bootstrap.pypa.io/get-pip.py
python2.7 get-pip.py

pip2.7 install virtualenv
pip2.7 install pyopenssl ndg-httpsclient pyasn1
pip2.7 install cryptography

Instalando el cliente de LetsEncrypt:

git clone https://github.com/letsencrypt/letsencrypt
cd letsencrypt
./letsencrypt-auto

Listo