Skip to content

Instantly share code, notes, and snippets.

@haio
Created July 9, 2013 06:21
Show Gist options
  • Save haio/5955103 to your computer and use it in GitHub Desktop.
Save haio/5955103 to your computer and use it in GitHub Desktop.
Installing libyaml-devel in Centos
In order to install libyaml-devel in Centos, EPEL repo needs to be added by running the following commands:
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
sudo rpm -Uvh remi-release-6*.rpm epel-release-6*.rpm
Verify the EPEL repos are installed:
$ ls -1 /etc/yum.repos.d/epel* /etc/yum.repos.d/remi.repo
/etc/yum.repos.d/epel.repo
/etc/yum.repos.d/epel-testing.repo
/etc/yum.repos.d/remi.repo
Run yum install:
yum install libyaml-devel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment