0

我正在尝试将更新的 Python (2.7.3) 与旧的 CentOS 一起使用。

我有一个将 python 安装到非标准位置的方法:

 ./configure --prefix=#{install_path} --with-threads --enable-shared --with-zlib=/usr/include
 make
 make install

我设置PATHLD_LIBRARY_PATH变量来查找bin/python.so使用/etc/profile.d/. 这似乎主要工作。

对于非 root 用户,我得到了正确的 Python:

[vagrant@localhost ~]$ python
Python 2.7.3 (default, Dec 24 2012, 15:18:59) 
[GCC 4.1.2 20080704 (Red Hat 4.1.2-50)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 

使用 root 用户,我得到了正确的 Python:

[vagrant@localhost ~]$ sudo su
[root@localhost vagrant]# python
Python 2.7.3 (default, Dec 24 2012, 15:18:59) 
[GCC 4.1.2 20080704 (Red Hat 4.1.2-50)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 

但是,$LD_LIBRARY_PATH在使用 sudo 时,hack 似乎有点奇怪:

[vagrant@localhost ~]$ sudo python
python: error while loading shared libraries: libpython2.7.so.1.0:
cannot open shared object file: No such file or directory

即使变量看起来正确:

[vagrant@localhost ~]$ sudo which python
/opt/Python-2.7.3/bin/python

添加Defaults env_keep += "LD_LIBRARY_PATH"/etc/sudoers不起作用。

sudo -i python确实有效。 sudo -E python不起作用。

我很好奇我能做些什么来获得sudo正确的 Python 没有-i

有关的:

sudo 更改 PATH - 为什么?

https://stackoverflow.com/questions/12593336/odd-path-behaviour-on-centos-python

4

1 回答 1

1

感谢这篇博文。您可以通过在配置中$LD_LIBRARY_PATH链接来放弃使用。在LDFLAGS哪里#{ldlibpath}#{install_path}/lib

./configure --prefix=#{install_path} --with-threads --enable-shared \
--with-zlib=/usr/include LDFLAGS="-Wl,-rpath #{ldlibpath}"

如博文中所述,在运行 configure 之前,您需要 mkdir 这个 ldlibpath。

于 2012-12-24T22:34:47.120 回答