Skip to content

Latest commit

 

History

History
55 lines (34 loc) · 1.55 KB

known_issues.rst

File metadata and controls

55 lines (34 loc) · 1.55 KB

Known issues

This is the list of issues which are not or will not be fixed (yet...).

  • Under Travis CI the coloration may not be shown.
  • Under GitLab CI/CD the coloration may not be shown.

Ubuntu 20.04.1 LTS Focal

In Ubuntu release 20.04 they have replaced a package named libffi.so.6 and upgraded it to version libffi.so.7

This means PyFunceble will trow an error like:

ImportError: libffi.so.6: cannot open shared object file: No such file or directory

The fix for this issue is then rather simple, add a softlink between the versions with ln -s

The complete line in my case was:

sudo ln -s /usr/lib/x86_64-linux-gnu/libffi.so.7 /usr/lib/x86_64-linux-gnu/libffi.so.6

However, the right way to do this is by first locate where your's libffi.so.7 is by

find /usr/lib/ -type f -iname 'libffi.so.*' and then apply the softlink to libffi.so.7

Urllib3

On Debian 10 (Buster) and variants as Kubuntu 20.04, we have observed issues with urllib3 in combination with python version < 3.8.5

The current workaround for this is to run PyFunceble from a virtual environment like MiniConda.

Note

See <#86> for more details.

Search keys

urllib3.exceptions.NewConnectionError: <urllib3.connection.VerifiedHTTPSConnection object at 0x7ff3d26ef4e0>: Failed to establish a new connection: [Errno -2] Name or service not known

host='pyfunceble-not-resolved', port=443