6

在CentOS 5.6 上安装 rvm并运行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 :(

但是iconv-devel找不到:

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

我该如何安装它?

4

1 回答 1

5

在 CentOS 5.4+(以及其他一些基于 Red Hat 的系统)上,您不必担心它。

它已经在 glibc 库中提供:

于 2011-07-28T17:31:25.137 回答