Skip to content

Instantly share code, notes, and snippets.

@VeLKerr
Last active September 12, 2017 01:11
Show Gist options
  • Save VeLKerr/64185f69fa3d42150252f98641e5f316 to your computer and use it in GitHub Desktop.
Save VeLKerr/64185f69fa3d42150252f98641e5f316 to your computer and use it in GitHub Desktop.
Commands for preparing pure CentOS v.6 machine to MCS
# Basic MPI packages
# But it still causes error:
# make: mpic++: Command not found
# during build of programs
yum update -y
yum install mc git openmpi openmpi-devel environment-modules -y
module add openmpi-x86_64
which mpirun
# This cmd resolve the issue
yum groupinstall "Development tools"
# But I steel need C++ 11.
yum install centos-release-scl devtoolset-3-toolchain -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment