如何设置最新 Open MPI 版本的路径?

How to set the path to the latest Open MPI version?

我正在使用 Ubuntu 14.04 并且安装的 Open MPI 是 1.6.5;我已经安装了 Latest Open MPI(4.0.0) following these instructions here 并通过-

设置了安装位置
./configure --prefix=/$HOME/Downloads/openmpi

然后,为了设置路径,我将这些行添加到我的 .bash_aliases 文件中-

om() {
    export PATH=$PATH:$HOME/Downloads/openmpi/bin
    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/Downloads/openmpi/lib
}

我已经 运行 om 命令然后 运行 mpirun --version 但它仍然输出 -

mpirun (Open MPI) 1.6.5

Report bugs to http://www.open-mpi.org/community/help/

如何保留和使用两个 Open MPI 版本? 谢谢。

您不想将 Open MPI 附加到您的路径,而是将其添加到前面。

om() {
    export PATH=$HOME/Downloads/openmpi/bin:$PATH
    export LD_LIBRARY_PATH=$HOME/Downloads/openmpi/lib:$LD_LIBRARY_PATH:
}