How to install iconv-devel on CentOS 5.6?

After installing rvm on CentOS 5.6 and launch rvm notes :

 dependencies: # For RVM rvm: yum install -y bash curl git # NOTE: For git you need the EPEL repository enabled # For Ruby (MRI & Ree) you should install the following OS dependencies: ruby: yum install -y gcc-c++ patch readline readline-devel zlib zlib-devel libyaml-devel libffi-devel openssl-devel ; yum install -y make bzip2 ; yum install -y iconv-devel # NOTE: For centos 5.4 final iconv-devel might not be available :( 

However, iconv-devel could not be found:

 Setting up Install Process No package iconv-devel available. Nothing to do 

How to install it?

+6
source share
1 answer

You do not need to worry about this on CentOS 5.4+ (and some other Red Hat based systems).

It is already presented in the glibc library:

+4
source

Source: https://habr.com/ru/post/889071/


All Articles