¿cómo resolver el error "falta la instalación de ruby psych"?


Utilicé rvm para instalar ruby 1.9.3. a pesar de que se instaló con éxito, se quejó de libyaml. y ahora cada vez que quiero instalar una gema (digamos rails) aparece esta advertencia:

It seems your ruby installation is missing psych (for YAML output). To eliminate this warning, please install libyaml and reinstall your ruby.

Utilizo Mac os X 10.7 (Lion).

Author: zishe, 2012-02-24

30 answers

En mi caso

rvm pkg install libyaml

Y

rvm reinstall ruby-1.9.3-p125

Resuelto el problema.

Para las personas que usan Ubuntu, asegúrese de que libtool esté instalado antes de los pasos anteriores:

sudo apt-get install libtool

Para usuarios de macOS (con homebrew):

rm -rf /usr/local/lib/ruby/gems/ && brew reinstall ruby
 214
Author: peterpengnz,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2017-10-02 13:45:42

Para ubuntu y rvm

sudo apt-get install libtool
rvm pkg install libyaml
rvm reinstall 1.9.3

Trabajado

 20
Author: Gizmomogwai,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-04-03 19:14:46

Si no está usando rvm, sino que está compilando e instalando ruby 1.9.3 desde cero - por ejemplo, está administrando sus versiones de ruby con rbenv - primero debe instalar libyaml. Consíguelo de http://pyyaml.org/; en este momento, el archivo que desea es http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz . Abra el tarball y el cd en la carpeta resultante. Entonces:

./configure --prefix=/usr/local
make
sudo make install

Ahora está listo para construir ruby. Descargar ruby desde http://ftp.ruby-lang.org/pub/ruby / . Abra el tarball y el cd en la carpeta resultante. Ahora:

./configure --prefix=/wherever/you/want/it/to/go
make
make install

(O posiblemente sudo make install, dependiendo de dónde lo estés poniendo.) Si usa rbenv, sabrá que ha funcionado si cambia a rbenv global 1.9.3-p194 (o como se llame su versión) y gem --version funciona sin previo aviso. Eso funcionó para mí en Mac OS X 10.6.8. (Actualización: Acabo de probar esto en Mac OS X 10.8.1 y parece haber funcionado bien allí también.)

 19
Author: matt,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-09-11 20:35:18
brew install libyaml
rvm reinstall 1.9.3

Es lo que funcionó para mí (en Snow Leopard).

 16
Author: Catharz,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-06-09 05:21:46

En mi caso la solución fue añadir la gema psych al Gemfile.

 9
Author: Vanuan,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-07-26 19:40:43

Tuve este problema. libyaml no compilaría. Resulta que me faltaba Libtool.

yum install libtool
yum install libyaml (or rvm pkg install libyaml)
rvm reinstall 1.9.3

Eso resolvió mi problema.

 6
Author: AKWF,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-10-23 14:22:30
$ brew doctor
$ brew link libyaml
 5
Author: 张健健,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2013-04-30 04:54:36

Finalmente lo arreglé. El problema era que a pesar de que instalé libyaml con brew, nunca se vinculó. Tuve que eliminar un archivo de encabezado en conflicto y luego brew link libyaml.

 4
Author: Michael,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2013-07-25 18:52:36

Si ha instalado ruby en macOS con homebrew, pruebe esta solución.

rm -rf /usr/local/lib/ruby/gems/ && brew reinstall ruby

Tenga en cuenta que esto se deshará de todas las gemas instaladas. Mejor guardar una lista de gemas instaladas con gem list antes de ejecutar esto.

 4
Author: orkoden,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2017-05-08 09:34:50

Instalando ruby con rvm para mac osx, use autolibs para instalar libyaml y primero desinstale libyaml ayuda.

Esto funcionó para mí:

brew uninstall libyaml
rvm autolibs enable
rvm reinstall ruby-2.1.1
 3
Author: user33302,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2014-05-23 11:39:14
sudo port install libyaml # or brew install libyaml
rvm get latest
rvm pkg install iconv
rvm pkg install openssl
rvm reinstall 1.9.3 --with-openssl-dir=~/.rvm/usr --with-iconv-dir=~/.rvm/usr

curl -OL http://rubyforge.org/frs/download.php/75414/linecache19-0.5.13.gem
curl -OL http://rubyforge.org/frs/download.php/75415/ruby-debug-base19-0.11.26.gem

gem install linecache19-0.5.13.gem ruby-debug-base19-0.11.26.gem -- --with-ruby-include=$rvm_path/src/ruby-1.9.3-p125/
gem install ruby-debug19

rvm reload

Recargar su .rvmrc (cd out, cd in)

bundle
 2
Author: vysogot,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-03-05 12:59:21

Tuve el mismo problema (Lion 10.7.4), y lo arreglé actualizando rvm y luego reinstalando ruby

1) actualizar rvm https://rvm.io//rvm/install /

curl -L https://get.rvm.io | bash -s stable --ruby

2) Luego use rvm para reinstalar ruby 1.9.3 (que se había instalado previamente con la versión anterior de rvm)

rvm reinstall 1.9.3
 2
Author: user761552,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-06-22 03:28:13

Ninguna de estas respuestas funcionó para mí.

Encontré mi respuesta en https://github.com/sstephenson/ruby-build/issues/119 Estoy en la máquina virtual Centos 6.3.

DEBE instalar libyaml antes de instalar ruby. SI ya ha instalado ruby debe deshacerse de los archivos antes de compilar el código fuente de nuevo!!!

# cd to your ruby source location
rm -rf /usr/local/lib/ruby # clean out ruby files
./configure
make && make install
gem -v # check if error is fixed
 2
Author: chemoish,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-10-16 03:07:42

Construí los archivos libyaml por separado del código fuente y los instalé en /usr/local/lib. El ruby que creó RVM todavía no los veía, y en lugar de muck con el makefile o el sistema LD_LIBRARY_PATH simplemente copié /usr/local/lib/libyaml* a ~/.rvm / rubies/ruby-1.9.3-p327/lib /

Eso acalló la advertencia.

 2
Author: Dave Hildebrandt,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-11-16 22:08:37

Esto es lo que funcionó para mí en Ubuntu:
- installing libyaml-dev (sudo apt-get install libyaml-dev)
- instalación de rvm + ruby 1.9.3

 2
Author: Luc,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-11-29 16:21:51

Probé todas estas respuestas y todavía no pude hacerlo funcionar. Instalé libyaml con homebrew y luego instalé Ruby 1.9.3 y 2.0.0 con rvm. Cada vez que se quejó de que me faltaba psych (libyaml). Pero tratando de instalar libyaml me dijo que ya estaba instalado. Enjuague, repita. Urgh.

Finalmente, lo que hice fue desinstalar libyaml. Entonces yo habilité autolibs en rvm , que (al menos en OSX) permite a rvm instalar y administrar dependencias más directamente. Ahora, cuando instalé los Rubíes, rvm fue capaz de instalar libyaml y reconocer que estaba en el lugar correcto.

Así que si has probado todas las otras opciones, prueba realmente eliminando libyaml y luego instalando tus Rubíes. Es count-intuitivo a partir de los mensajes de error, pero eso es lo que finalmente funcionó para mí.

 2
Author: Bob Ralian,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2013-04-21 19:08:41

Reinstalé ruby 1.9.3 con soporte libyaml:

rvm reinstall 1.9.3 --with-libyaml

Me aseguré de que usaría 1.9.3 antes de instalar psych:

rvm use 1.9.3

He instalado psych:

gem install psych
 2
Author: adamo,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2013-05-03 14:08:25

Tuve el mismo problema (Cent OS 5.7 ), ninguna de las soluciones anteriores funcionó para mí.

// My console warning
/usr/local/rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/yaml.rb:56:in `<top (required)>':
It seems your ruby installation is missing psych (for YAML output).
To eliminate this warning, please install libyaml and reinstall your ruby.

Después de hacer varias re-instalaciones, me di cuenta de que está buscando yaml en la versión ruby de 1.9.1 en lugar de 1.9.3. Así que rebajé

// obviously after installing `libyaml`
rvm remove all
rvm install 1.9.1
rvm use 1.9.1 --default

Y funcionó 8D!

 1
Author: Ish,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-10-25 16:42:07

En CentOS 6.3 ninguno de los anteriores funcionó. Sin embargo, instalar libyaml desde la fuente antes de instalar ruby resolvió el problema.

$ wget http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz
$ tar xzvf yaml-0.1.4.tar.gz
$ cd yaml-0.1.4
$ ./configure --prefix=/usr/local
$ make
$ sudo make install

Y luego

rvm install 1.9.3
gem install rails
 1
Author: Dmitry G.,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-11-22 05:25:06

Estoy usando

Rvm 1.16.20 (versión) por Wayne E. Seguin , Michal Papis [https://rvm.io/]

Y también obtuvo el siguiente error durante la instalación del paquete

.rvm / rubies/ruby-1.9.3-p194/lib/ruby/1.9.1 / yaml.rb: 56: en": Parece a tu instalación de ruby le falta psych (para la salida YAML). A elimine esta advertencia, instale libyaml y vuelva a instalar su rubí.

Aquí hay tres maneras diferentes de resolver este error sin tener que gem install psych

  1. export LD_LIBRARY_PATH = /usr/local / lib
  2. Alter/etc / ld.so.conf

    sudo su - root
    echo /usr/local/lib64 >> /etc/ld.so.conf
    echo /usr/local/lib >> /etc/ld.so.conf
    ldconfig
    
  3. Se corrige la instalación de rvm ruby 1.9.3 a través de

    patch .rvm/scripts/functions/manage/ruby < ruby-1.9.3-LDFLAGS.patch
    rvm uninstall ruby-1.9.3-p194
    export LDFLAGS='-L /usr/local/lib64 -L/usr/local/lib -Xlinker -R/usr/local/lib64 -Xlinker -R/usr/local/lib'
    rvm install ruby-1.9.3-p194 --disable-binary
    grep configure_args .rvm/src/ruby-1.9.3-p194/config.log # to confirm LDFLAG
    
    $ diff  -c .rvm/{src/rvm/,}scripts/functions/manage/ruby
    *** .rvm/src/rvm/scripts/functions/manage/ruby  2012-11-10 06:28:14.000000000 +0000
    --- .rvm/scripts/functions/manage/ruby  2013-01-25 17:18:00.000000000 +0000
    ***************
    *** 106,123 ****
              # when relative is in effect libyaml is installed in ruby itself so it will be moved with ruby
              prefix_path="${rvm_rubies_path}/${rvm_ruby_string}" libyaml

    !         __rvm_update_configure_env CFLAGS="-I${rvm_rubies_path}/${rvm_ruby_string}/include"
    !         __rvm_update_configure_env LDFLAGS="-L${rvm_rubies_path}/${rvm_ruby_string}/lib"
              if [[ -d "${rvm_rubies_path}/${rvm_ruby_string}/lib64" ]]
    !         then __rvm_update_configure_env LDFLAGS="-L${rvm_rubies_path}/${rvm_ruby_string}/lib64"
              fi
            else
              libyaml_installed || libyaml # Installs libyaml

    !         __rvm_update_configure_env CFLAGS="-I${rvm_path}/usr/include"
    !         __rvm_update_configure_env LDFLAGS="-L${rvm_path}/usr/lib"
              if [[ -d "${rvm_path}/usr/lib64" ]]
    !         then __rvm_update_configure_env LDFLAGS="-L${rvm_path}/usr/lib64"
              fi
            fi

    --- 106,123 ----
              # when relative is in effect libyaml is installed in ruby itself so it will be moved with ruby
              prefix_path="${rvm_rubies_path}/${rvm_ruby_string}" libyaml

    !         __rvm_update_configure_env CFLAGS="-I${rvm_rubies_path}/${rvm_ruby_string}/include ${CFLAGS}"
    !         __rvm_update_configure_env LDFLAGS="-L${rvm_rubies_path}/${rvm_ruby_string}/lib ${LDFLAGS}"
              if [[ -d "${rvm_rubies_path}/${rvm_ruby_string}/lib64" ]]
    !         then __rvm_update_configure_env LDFLAGS="-L${rvm_rubies_path}/${rvm_ruby_string}/lib64 ${LDFLAGS}"
              fi
            else
              libyaml_installed || libyaml # Installs libyaml

    !         __rvm_update_configure_env CFLAGS="-I${rvm_path}/usr/include ${CFLAGS}"
    !         __rvm_update_configure_env LDFLAGS="-L${rvm_path}/usr/lib ${LDFLAGS}"
              if [[ -d "${rvm_path}/usr/lib64" ]]
    !         then __rvm_update_configure_env LDFLAGS="-L${rvm_path}/usr/lib64 ${LDFLAGS}"
              fi
            fi

 1
Author: victorv,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2013-01-25 17:48:19

Método de instalación de ruby NO RVM.

% uname -a
Linux localhost.localdomain 2.6.32-358.el6.x86_64 #1 SMP Fri Feb 22 00:31:26 UTC 2013  x86_64 x86_64 x86_64 GNU/Linux

% cat /etc/redhat-release
CentOS release 6.4 (Final)

% wget http://apt.sw.be/redhat/el5/en/x86_64/dag/RPMS/rpmforge-release-0.3.6-1.el5.rf.x86_64.rpm
% sudo rpm -K rpmforge-release-0.3.6-1.el5.rf.*.rpm"
% sudo rpm -ivh rpmforge-release-0.3.6-1.el5.rf.*.rpm"

DESHABILITE rpmforge editando este archivo y establezca enabled = 0 % sudo vi / etc / yum.repos.d / rpmforge.repo

% grep rpmforge ~/.aliases
alias rpmforge "sudo yum --disablerepo='*' --enablerepo='rpmforge'"

% rpmforge install libyaml libyaml-devel

% sudo yum list installed | grep libyaml
libyaml.x86_64          0.1.4-1.el5.rf  @rpmforge                               
libyaml-devel.x86_64    0.1.4-1.el5.rf  @rpmforge  

El libyaml-devel es la clave.

% tar zxvf ruby-1.9.3-p448.tar.gz
% cd ruby-1.9.3-p448
% ./configure -prefix=$HOME/ruby-1.9.3-p448
% make ; make install
% cd $HOME; ln -s ./ruby-1.9.3-p448 ruby

Actualiza tu ruta y fuente .cshrc

% echo $PATH
/home/francis/ruby/bin:/usr/sbin:/home/francis/bin:/home/francis/jdk1.7.0_25/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/bin

% which ruby
/home/francis/ruby/bin/ruby

% gem update --system

Configura tu GEM_HOME.cshrc and source

% echo $GEM_HOME
% /home/francis/ruby/lib/ruby/gems

% gem install mysql2 pg ruby-debug-ide rails capistrano capistrano-ext passenger
 1
Author: Francis Trujillo,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2013-07-07 16:08:23

Si está compilando ruby desde el código fuente (construí 1.9.3 en Fedora 20), necesitará esto antes de hacer la configuración/make para compilar ruby:

yum install libyaml-devel

(además de yum instalar libyaml.) Similar a la respuesta de Francis usando rpmforge anterior.

 1
Author: Don Law,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2015-07-08 23:33:19

Estaba teniendo este error y noté que tenía diferentes versiones de Ruby instaladas con HomeBrew, junto con muchas gemas que ya no usaba. Así lo hizo una limpieza completa como esta:

$ brew remove --force ruby # remove all versions installed
$ sudo rm -rf /usr/local/lib/ruby # remove all gems and leftover files
$ brew install ruby
$ gem install bundler
$ bundle install

Si no usas un Gemfile, asegúrate de saber qué gemas volver a instalar.

 1
Author: Eneko Alonso,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2017-09-20 17:42:28

En mi caso todo lo que necesitaba hacer era

rm -rf /usr/local/lib/ruby/gems/2.4.0/gems/psych-2.2.4
rm -rf /usr/local/lib/ruby/gems/2.4.0/extensions/x86_64-darwin-16/2.4.0/psych-2.2.4

Ahora, FWIW, gem list incluye

psych (2.2.4, default: 2.2.2)
 1
Author: orome,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2017-10-03 14:32:50

En Snow Leopard, la solución de Catharz no funcionó para mí. Esta solución, sin embargo, hizo:

brew install libyaml
rvm get head
rvm reinstall 1.9.3  --with-gcc=clang

(La reinstalación de rvm me advirtió que clang no tenía la opción "with with-libyaml", pero resolvió el mensaje de error de todos modos.)

 0
Author: mrrena,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-06-10 21:50:50

Esto funcionó para mí al menos en Ubuntu 10.04

{sudo apt-get install libtool

Reinst reinstalar rvm 1.9.3

 0
Author: Abhay PS,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-06-26 09:46:24

En Solaris:

# sudo crle -64 -l /usr/local/lib

Para agregar /usr/local/lib a la ruta de búsqueda de la biblioteca compartida (véase man crle)

 0
Author: edx,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-11-12 15:04:07

Cuando cambio de 64 bits a 32 bits en Snow Leopard 10.6.8, había reinstalado ruby (usado rvm) para ejecutarse en 32 bits y encontré el mismo problema. Así que solo 'limpiar' todo lo que se almacena en caché por rvm antes y problemas resueltos. Espero que este consejo pueda ayudar a alguien.

Limpieza de Rvm todo

Rvm install ruby_version_here //(De esta manera, rvm también volverá a descargar el yaml más reciente).

Por cierto, si aún encuentras este problema, creo que puedes probar:

Instalación de gema psych

 0
Author: anguu,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-11-25 19:02:47

Para aquellos con Mountain Lion y RVM versión >= 1.18.x

RVM viene con esta nueva herramienta que se usa como indicador al instalar versiones de ruby. Se llama autolibs.

Me deshice de este problema psicológico haciendo lo siguiente:

rvm reinstall ruby-1.9.3-p392 --autolibs=3

Lea el texto de ayuda ANTES haciendo:

rvm help autolibs

Genial.

 0
Author: Alan Andrade,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2013-03-19 23:58:18

También luché con los mismos fracasos con rvm install ruby-2.0.0 durante muchas, MUCHAS horas. Había probado todos los diferentes métodos para instalar libyaml; wget source, yum y rvm. También probé todos los diferentes enfoques enumerados en hilos similares. Debido a que probé todos los diferentes métodos, tuve múltiples instalaciones y ubicaciones de libyaml.

RVM es perfectamente capaz de instalar las dependencias necesarias en ~/.rvm. La simple eliminación de los archivos libyaml de la instalación no RVM solucionó este problema para me:

sudo rm /usr/local/lib/libyaml*.*

rvm reinstall ruby-2.0.0-p0

Funciona!

 0
Author: Andrejs R.,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2013-04-18 20:41:05