You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the OPM FLOW REFERENCE MANUAL (2023-04) -> 2.1 INSTALLING OPM FLOW -> 2.1.1 UBUNTU LINUX 20.04 (64-BIT VERSION ONLY) AND HIGHER
... to install the opm-simulators programs ... and their dependencies:
sudo apt-get install mpi-default-bin
...
On the other hand, according to the https://opm-project.org/?page_id=239 -> PREREQUISITES -> Ubuntu binaries (for Ubuntu 20.04 or 22.04)
// MPI for parallel programs
sudo apt-get install -y mpi-default-dev
...
Question:
What is the difference between results of the mpi-default-bin and mpi-default-dev?
The text was updated successfully, but these errors were encountered:
dev is development headers and libraries (e.g. libmpi.so and mpi.h), bin is the binaries (e.g. mpirun). first is required to compile, second is required to run.
... to install the opm-simulators programs ... and their dependencies:
sudo apt-get install mpi-default-bin
...
// MPI for parallel programs
sudo apt-get install -y mpi-default-dev
...
Question:
What is the difference between results of the mpi-default-bin and mpi-default-dev?
The text was updated successfully, but these errors were encountered: