Sir,
We are a group working in solution x-ray scattering in KAIST, South Korea. We installed IMP from the Source code tarballhttp://salilab.org/imp/1.0/download/imp-1.0.tar.gzin Fedora 8, using the below procedure as given in your webpage
scons prefix=/opt/imp/ all
scons prefix=/opt/imp/ install
but when we try to run the foxs binary we are get the below error
./foxs: error while loading shared libraries: libimp_saxs.so: cannot open shared object file: No such file or directory
hope you could give some suggestions.
sincerely prabha
On 4/9/10 1:09 AM, prabhakar g wrote: > We are a group working in solution x-ray scattering in KAIST, South Korea. > We installed IMP from the Source code tarball > http://salilab.org/imp/1.0/download/imp-1.0.tar.gz in Fedora 8, using > the below procedure as given in your webpage > > scons prefix=/opt/imp/ all > > scons prefix=/opt/imp/ install > > but when we try to run the foxs binary we are get the below error > > ./foxs: error while loading shared libraries: libimp_saxs.so: cannot > open shared object file: No such file or directory
The IMP binaries (including foxs) link against the IMP shared libraries, including libimp_saxs.so. So in order for things to work, those libraries need to be in your search path. Since you specified /opt/imp as your prefix, you will find the binaries in /opt/imp/bin/ and the libraries in /opt/imp/lib/.
/opt/imp/lib is not in your system's standard library search path. Either reinstall with prefix=/usr or prefix=/usr/local to install the libraries in the standard search path, or add /opt/imp/lib to the search path, either by adding a file to /etc/ld.so.conf.d/ containing /opt/imp/lib and then running /sbin/ldconfig, or by setting the LD_LIBRARY_PATH variable to include /opt/imp/lib.
Ben
Thank you Ben. i added the LD_LIBRARY_PATH=/opt/imp/lib/ in the .bashrc file and it worked.
Sincerely prabha
On Sat, Apr 10, 2010 at 3:37 AM, Ben Webb ben@salilab.org wrote:
> On 4/9/10 1:09 AM, prabhakar g wrote: > > We are a group working in solution x-ray scattering in KAIST, South > Korea. > > We installed IMP from the Source code tarball > > http://salilab.org/imp/1.0/download/imp-1.0.tar.gz in Fedora 8, using > > the below procedure as given in your webpage > > > > scons prefix=/opt/imp/ all > > > > scons prefix=/opt/imp/ install > > > > but when we try to run the foxs binary we are get the below error > > > > ./foxs: error while loading shared libraries: libimp_saxs.so: cannot > > open shared object file: No such file or directory > > The IMP binaries (including foxs) link against the IMP shared libraries, > including libimp_saxs.so. So in order for things to work, those > libraries need to be in your search path. Since you specified /opt/imp > as your prefix, you will find the binaries in /opt/imp/bin/ and the > libraries in /opt/imp/lib/. > > /opt/imp/lib is not in your system's standard library search path. > Either reinstall with prefix=/usr or prefix=/usr/local to install the > libraries in the standard search path, or add /opt/imp/lib to the search > path, either by adding a file to /etc/ld.so.conf.d/ containing > /opt/imp/lib and then running /sbin/ldconfig, or by setting the > LD_LIBRARY_PATH variable to include /opt/imp/lib. > > Ben > -- > ben@salilab.org http://salilab.org/~ben/http://salilab.org/%7Eben/ > "It is a capital mistake to theorize before one has data." > - Sir Arthur Conan Doyle > _______________________________________________ > IMP-users mailing list > IMP-users@salilab.org > https://salilab.org/mailman/listinfo/imp-users >