Wireless Army
This is a blog / tips and tricks website for web developers and security researchers.
follow us in feedly


libpython2.5.so error not found
by admin
 at 2017-07-21 08:09:00.

if you have the libpython2.5.so can’t error you can try all these commands (and hope one will work) you must have pythone and synaptic already installed
cd /usr/lib
ls libpython*; dpkg -l | grep libpython; lsb_release -a
or
sudo ln -s ./libpython2.6.so.1.0 ./libpython2.5.so.1.0
or
$ cd /usr/lib64/
$ ln -s libpython2.6.so libpython2.5.so.1.0
$ ln -s libpython2.5.so.1.0 libpython2.5.so.1
$ ln -s libpython2.5.so.1 libpython2.5.so
$ cd /usr/lib/
$ ln -s libpython2.6.so.1.0 libpython2.5.so.1.0
$ ln -s libpython2.5.so.1.0 libpython2.5.so.1
$ ln -s libpython2.5.so.1 libpython2.5.so
$ cd /usr/local/lib/
$ ln -s python2.6 python2.5
$ cd $HOME/nta/lib
$ ln -s python2.5 python2.6

$ python
>>> import nupic.network
>>> quit();