https://github.com/idaholab/moose
Raw File
Tip revision: 3821010bde8431efb5b19ac66403fd7eab662786 authored by Cody Permann on 24 January 2020, 20:57:07 UTC
MOOSE Version 1.0.0
Tip revision: 3821010
yum_installs.sh
#!/bin/bash

# Update package lists
yum update -y

# Install packages
yum install -y \
  gcc \
  gcc-c++ \
  gcc-gfortran \
  git \
  make \
  cmake \
  tcl \
  m4 \
  freeglut-devel \
  blas-devel \
  lapack-devel \
  libX11-devel \
  python-devel \
  wget \
  which \
  boost-devel \
  bison \
  flex \
  tar

# Clear cache
yum clean all
rm -rf /var/cache/yum/
back to top