how to solve “ruby installation is missing psych” error?

后端 未结 30 3460
悲哀的现实
悲哀的现实 2020-11-28 17:54

I used rvm to install ruby 1.9.3. even though it was successfully installed, it complained about libyaml. and now every time i wanna install a gem (say rails) this warning s

30条回答
  •  佛祖请我去吃肉
    2020-11-28 18:34

    I had this problem. libyaml wouldn't compile. It turns out I was missing libtool.

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

    That solved my problem.

提交回复
热议问题