Fix Python/PIP issue with certbot-auto
-
Download certbot-auto
-
Modify certbotauto
sudo nano certbot-auto -
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