新安装的python2.7无法加载error while loading shared libraries: libpython2.7.so.1.0

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

1.修改/etc/ld.so.conf配置
加载python2.7的lib库路径
echo "/opt/FUDE-1.1/python/lib">>/etc/ld.so.conf

2.执行
/sbin/ldconfig -vi

默认情况下,编译器只会使用/lib和/usr/lib这两个目录下的库文件
如果你安装了某些库,没有指定 --prefix=/usr 这样lib库就装到了/usr/local下,而又没有在/etc/ld.so.conf中添加/usr/local/lib,就会报错了

转载于:https://my.oschina.net/u/1866459/blog/2876130

你可能感兴趣的:(新安装的python2.7无法加载error while loading shared libraries: libpython2.7.so.1.0)