Skip to content

Instantly share code, notes, and snippets.

@kingspp
Created March 28, 2019 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kingspp/62f7808f5e80d2ff491ad44693ca7cdd to your computer and use it in GitHub Desktop.
Save kingspp/62f7808f5e80d2ff491ad44693ca7cdd to your computer and use it in GitHub Desktop.
OpenMPI v4 Installation
#!/usr/bin/env bash
# Install Open MPI v4
wget https://download.open-mpi.org/release/open-mpi/v4.0/openmpi-4.0.0.tar.gz
tar -xvf openmpi-4.0.0.tar.gz
cd openmpi-4.0.0
./configure --prefix=/usr/local
make all
sudo make install
sudo ldconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment