Sollte das automatische Update von Letsencrypt fehlschlagen und folgende Fehler auswerfen…
... Installing Python packages... Had a problem while installing Python packages: Collecting argparse==1.4.0 (from -r /tmp/tmp.LNMYALuybJ/letsencrypt-auto-requirements.txt (line 5)) /root/.local/share/letsencrypt/local/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:315: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#snimissingwarning. SNIMissingWarning /root/.local/share/letsencrypt/local/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:120: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning Downloading argparse-1.4.0-py2.py3-none-any.whl Collecting pycparser==2.14 (from -r /tmp/tmp.LNMYALuybJ/letsencrypt-auto-requirements.txt (line 11)) Downloading pycparser-2.14.tar.gz (223kB) Collecting cffi==1.4.2 (from -r /tmp/tmp.LNMYALuybJ/letsencrypt-auto-requirements.txt (line 14)) Downloading cffi-1.4.2.tar.gz (365kB) Complete output from command python setup.py egg_info: x86_64-linux-gnu-gcc: internal compiler error: Bus error (program as) Please submit a full bug report, with preprocessed source if appropriate. See <file:///usr/share/doc/gcc-4.8/README.Bugs> for instructions. x86_64-linux-gnu-gcc: internal compiler error: Bus error (program as) Please submit a full bug report, with preprocessed source if appropriate. See <file:///usr/share/doc/gcc-4.8/README.Bugs> for instructions. No working compiler found, or bogus compiler options passed to the compiler from Python's distutils module. See the error messages above. (If they are about -mno-fused-madd and you are on OS/X 10.8, see http://stackoverflow.com/questions/22313407/ .) ---------------------------------------- Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-EQlFQP/cffi /root/.local/share/letsencrypt/local/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:120: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning
…sollte man sich die Logdatei genauer anschauen /root/.pip/pip.log
... Using version 1.6.0 (newest of versions: 1.6.0, 1.5.2, 1.5.1, 1.5.0, 1.4.2, 1.4.1) Downloading from URL https://pypi.python.org/packages/b6/98/11feff87072e2e640fb8320712b781eccdef05d588618915236b32289d5a/cffi-1.6.0.tar.gz#md5=2fae9160991afefb20ff0fbde3b14faf (from https://pypi.python.org/simple/cffi/) Running setup.py (path:/tmp/pip_build_root/cffi/setup.py) egg_info for package cffi x86_64-linux-gnu-gcc: internal compiler error: Bus error (program as) Please submit a full bug report, with preprocessed source if appropriate. See <file:///usr/share/doc/gcc-4.8/README.Bugs> for instructions. x86_64-linux-gnu-gcc: internal compiler error: Bus error (program as) Please submit a full bug report, with preprocessed source if appropriate. See <file:///usr/share/doc/gcc-4.8/README.Bugs> for instructions. No working compiler found, or bogus compiler options passed to the compiler from Python's distutils module. See the error messages above. (If they are about -mno-fused-madd and you are on OS/X 10.8, see http://stackoverflow.com/questions/22313407/ .) Complete output from command python setup.py egg_info: x86_64-linux-gnu-gcc: internal compiler error: Bus error (program as) ...
GCC scheint zum Kompilieren das Binary “as” zu nutzen, welches hier einen Fehler zu haben scheint.
Dies ist im Paket “binutils” enthalten und sollte via
apt-get install --reinstall binutils
neuinstalliert werden.
Installing Python packages... Installation succeeded.
Advertisements