I have an application which when I run it, it gives me the following error:
paraview: error while loading shared libraries: libpython2.6.so.1.0: cannot open shared object file: No such file or directory
I already have python 2.7 installed. When I type python
, I can write codes. It seems it needs Python 2.6. I download and install the python 2.6 by downloading it and running:
./configure
make -j6
make checkinstall
But when I look for libpython2.6.so*
in my computer, no files are found and still the application is crying for that. Can anyone please help me?