我正在尝试将更新的 Python (2.7.3) 与旧的 CentOS 一起使用。
我有一个将 python 安装到非标准位置的方法:
./configure --prefix=#{install_path} --with-threads --enable-shared --with-zlib=/usr/include
make
make install
我设置PATH
和LD_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
?
有关的:
https://stackoverflow.com/questions/12593336/odd-path-behaviour-on-centos-python