In addition to online repositories the OpenHPC packages are also provided as ISO images. These images contain only the packages in major release (1.0) so yum should be configured with the online updates repo enabled. To access the packages via this method download the ISO to your host: # wget -O /tmp/OpenHPC-1.0-CentOS_7.1.iso http://build.openhpc.community/OpenHPC:/1.0/CentOS_7.1/iso/OpenHPC-1.0-CentOS_7.1.iso Keep in mind these images are in the range of 7-8 GB in size. You can now mount the ISO image via the loop device: # mkdir -p /mnt/iso # mount -o loop /tmp/OpenHPC-1.0-CentOS_7.1.iso /mnt/iso To configure the package manager create a file called /etc/yum.repos.d/OpenHPC:1.0.repo with the following contents: [OpenHPC] name=OpenHPC-1 - Base baseurl=file:///mnt/iso gpgcheck=1 gpgkey=file:///mnt/iso/repodata/repomd.xml.key enabled=1 [OpenHPC-updates] name=OpenHPC-1 - Updates baseurl=http://build.openhpc.community/OpenHPC:/1.0/updates/CentOS_7.1 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-OpenHPC-1 Your package manager should now be able to install OpenHPC packages in the typical fashion: # yum install docs-ohpc