Created
July 9, 2013 06:21
-
-
Save haio/5955103 to your computer and use it in GitHub Desktop.
Installing libyaml-devel in Centos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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