I tried installing OpenMPI from Packman (I need specifically OpenMPI for some software I’m using) - but the executables and libraries don’t seem to get appended to the path or libpath - can anyone tell me how to do this? I’m not going to be compiling the code, I just need the right mpirun to be called and .so files available…
export LD_LIBRARY_PATH=/path/to/your/files/:$LD_LIBRARY_PATH
export PATH=/path/to/your/binaries/:$PATH #optional I imagine
mpiCommand
Good luck.
PattiMichelle wrote:
> I tried installing OpenMPI from Packman (I need specifically OpenMPI for
> some software I’m using) - but the executables and libraries don’t seem
> to get appended to the path or libpath - can anyone tell me how to do
> this? I’m not going to be compiling the code, I just need the right
> mpirun to be called and .so files available…
>
> Thanks!
> Patti
>
>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
Thanks, I’m just getting back to that problem and I’ll give it a try. When I do full referencing of /…/mpirun it works OK. But I don’t know at what point other libraries get used and they’re not directly referenced in the call to mpirun.