解决libpython2.6.so.1.0: cannot open shared object file

文章解决的问题:安装nginx中需要Python2.6的支持,下面介绍如何安装Python2.6,并建立lib的连接。

问题展示:error while loading shared libraries: libpython2.6.so.1.0: cannot open shared object file: No such file or directory

解决方案:

1. 安装Python2.6

1.1 下载Python-2.6.6.tgz,下载地址:http://www.python.org/ftp/python/2.6.6/Python-2.6.6.tgz

1.2 解压tgz :

tar -xzvf Python-2.6.6.tgz


1.3 cd 到解压后的文件夹中,进行Python的make 安装

./configure --prefix=/foo/python26 --enable-shared
make
make altinstall

2. 建立lib连接:sudo ln -s /foo/python26/lib/libpython2.6.so.1.0 /usr/lib/libpython2.6.so.1.0
再次运行nginx的安装,出现其他包的依赖没找到。其他包的安装请看另外的文章:

解决libmysql.so.16: cannot open shared object file

解决libcrypto.so.0.9.8: cannot open shared object file

你可能感兴趣的:(解决libpython2.6.so.1.0: cannot open shared object file)