Python lib / python2.7 / lib-dynload / _io.so: undefined symbol: _PyErr_ReplaceException

I am trying to configure an SSL certificate with letencrypt, but when I run it, I get the following:

user@box:/opt/letsencrypt$ ./letsencrypt-auto --apache -d example.com
Updating letsencrypt and virtual environment dependencies...Traceback (most recent call last):
  File "/home/user/.local/share/letsencrypt/bin/pip", line 7, in <module>
from pip import main
  File "/home/user/.local/share/letsencrypt/local/lib/python2.7/site-packages/pip/__init__.py", line 13, in <module>
from pip.utils import get_installed_distributions, get_prog
  File "/home/user/.local/share/letsencrypt/local/lib/python2.7/site-packages/pip/utils/__init__.py", line 15, in <module>
import zipfile
  File "/usr/lib/python2.7/zipfile.py", line 6, in <module>
import io
  File "/usr/lib/python2.7/io.py", line 51, in <module>
import _io
ImportError: /home/user/.local/share/letsencrypt/lib/python2.7/lib-dynload/_io.so: undefined symbol: _PyErr_ReplaceException

Python -V returns Python 2.7.11.

I tried many other threads and couldn't get it to work.

+4
source share
2 answers

It sounds like the module is ioloading with the wrong version libpython.

Here, how it looks on my system, iouses this symbol, and libpythonprovides it:

air:~ dima$ nm  /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_io.so | grep -i replaceex
                 U __PyErr_ReplaceException
air:~ dima$ nm /Library/Frameworks/Python.framework/Versions/2.7/lib/libpython2.7.dylib | grep -i replaceex
00000000000d03a0 T __PyErr_ReplaceException
+3
source

I could not understand the true reason for this.

OS Python virtualenv Python (2.7.11 ) .

0

Source: https://habr.com/ru/post/1624593/


All Articles