今下午在新硬盘上面重新升级Python2.7的时候,升级完之后,发现pip还是不行,使用“# wget
https://bootstrap.pypa.io/ez_setup.py -O - |
python”提示找不到libpython2.7.so.1.0,经过查找,可以使用如下方法解决:
#########################################
使用源代码的方式安装Python2.7之后,在import某些库时抛出了如下异常:
ImportError: libpython2.7.so.1.0: cannot open shared object
file: No such file or directory
一 原因分析
由于在系统的lib路径中找不到这个共享库。
注: 如果编译时加上了--enable-shared,才会编译这个共享库,默认的位置是Python可执行程序所在目录的lib目录下,如/usr/local/python27
二 解决方法
1. 可以使用如下方式编译Python以解决这个问题:
./configure
--enable-shared --prefix=/usr/local/python27
make && make
install
2.
cp /usr/local/python27/lib/libpython2.7.so.1.0 /usr/local/lib
cd /usr/local/lib
ln
-s libpython2.7.so.1.0 libpython2.7.so
3. 使用命令whereis
libpython2.7.so.1.0得到如下结果就说明
libpython2.7.so.1:
/usr/local/lib/libpython2.7.so.1.0
4. 如果whereis没有结果,或者还有import错误,可以尝试如下操作:
在/etc/ld.so.conf中加入新行/usr/local/lib
保存后,运行
/sbin/ldconfig
/sbin/ldconfig –v
##################################################
最后,就是很多错误重启机器之后就没有了
参考文献:
http://blog.csdn.net/jcjc918/article/details/11022345 (升级python 2.7)
https://pypi.python.org/pypi/setuptools (centos安装setuptools)
http://stackoverflow.com/questions/21342931/error-importing-theano
(带参数编译python2.7)
http://taoo.iteye.com/blog/1826912 (关键博文)
http://blog.csdn.net/huzhenwei/article/details/7339548 (解决libpython2.7.so.1.0)