[运维] python常见错误处理[deepin系统](pip安装应用)(一)

it2024-11-23  15

报错信息 Modules/errors.h:8:18: fatal error: lber.h: 没有那个文件或目录

处理办法

sudo apt-get install libldap2-dev 报错信息 Modules/LDAPObject.c:16:10: fatal error: sasl/sasl.h: 没有那个文件或目录

处理办法

sudo apt-get install libsasl2-dev 报错信息 awk: error while loading shared libraries: libreadline.so.6: cannot open shared object file: No such file or directory awk: error while loading shared libraries: libreadline.so.6: cannot open shared object file: No such file or directory

处理办法,系统源里面没有libreadline6,此处理方法可能有未知风险

cd /usr/lib/x86_64-linux-gnu/ ln -s libreadline.so.7 libreadline.so.6 报错信息 /usr/bin/ld: 找不到 -lnl-route-3

处理办法,系统源里面没有libreadline6,此处理方法可能有未知风险

sudo apt install libnl-route-3-dev
最新回复(0)