Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install libpython2.7.so

I have installed Python 2.6.6 at

[17:50:21 [email protected]:~]# which python
/usr/local/bin/python

also Python 2.7.6 at

[17:51:12 [email protected]:~]# which python2.7
/usr/local/bin/python2.7

But libpython2.7.so is missing

[17:48:52 [email protected]:~]# locate libpython2.6.so
/usr/lib64/libpython2.6.so
/usr/lib64/libpython2.6.so.1.0
/usr/lib64/python2.6/config/libpython2.6.so
[17:48:56 [email protected]:~]# locate libpython2.7.so
[17:49:02 [email protected]:~]#

Dont know how to fix this.

can anyone help ?

like image 998
roy Avatar asked Oct 27 '14 21:10

roy


2 Answers

You could try compiling it from sources, in root :

yum -y install python-devel openssl openssl-devel gcc sqlite-devel

wget http://www.python.org/ftp/python/2.7.5/Python-2.7.5.tar.bz2
tar -xvjf Python-2.7.5.tar.bz2
cd Python-2.7.5
./configure --prefix=/usr/local/python2.7 --with-threads --enable-shared
make
make install altinstall

ln -s /usr/local/python2.7/lib/libpython2.7.so /usr/lib
ln -s /usr/local/python2.7/lib/libpython2.7.so.1.0 /usr/lib
ln -s /usr/local/python2.7/bin/python2.7 /usr/local/bin
/sbin/ldconfig -v

Then test getting correct python /usr/local/python2.7/bin/python2.7 -V

And, as normal user :

echo "alias python='/usr/local/python2.7/bin/python2.7'" >> ~/.bashrc
source ~/.bashrc
python -V    

Good luck :)

like image 183
M-Gregoire Avatar answered Oct 22 '22 04:10

M-Gregoire


sudo apt-get install python2.7-dev

like image 23
user2501488 Avatar answered Oct 22 '22 04:10

user2501488