1. Download certbot-auto

  2. Modify certbotauto

    sudo nano certbot-auto
  3. You can fix this for now by adding the --no-download flag to the calls to virtualenv on lines 1001 and 1003:

    1001
    virtualenv --no-site-packages --python "$LE_PYTHON" "$VENV_PATH"
    becomes
    virtualenv --no-site-packages --no-download --python "$LE_PYTHON" "$VENV_PATH"


    1003
    virtualenv --no-site-packages --python "$LE_PYTHON" "$VENV_PATH" > /dev/null
    becomes
    virtualenv --no-site-packages --no-download --python "$LE_PYTHON" "$VENV_PATH" > /dev/null