Troubles with ruby-2.X installation using RVM

后端 未结 4 1478
说谎
说谎 2021-01-05 02:05

I recently came across of the ruby-2.0.0-p0 installation. After the successfully installation of the rvm i type the following command at the bash.

rvm instal         


        
4条回答
  •  甜味超标
    2021-01-05 02:58

    I had this exact same problem, same error message, etc. I don't know about you, but I use MacPorts, and through that I have libraries like OpenSSL installed, which I think may have contributed to my trouble.

    I just got it working on my system; I'm not sure exactly what I did right but here are the steps I took:

    1. Set up my ~/.rvmrc to match the first code block here.
    2. Uninstalled 2.0.0 through rvm (rvm remove 2.0.0).
    3. Removed the folders for ruby-2.0.0, rubygems-2.0.0 and the dependency packages like OpenSSL and YAML in ~/.rvm/src.
    4. Executed rvm install 2.0.0 --with-opt-dir=/opt/local --autolibs=0. /opt/local is my MacPorts prefix directory, and autolibs=0 disables any dependency installation so it didn't have the opportunity to use something other than my MacPorts libraries. If you get through this step without red console output you're past the errors you were having above.
    5. Not knowing if having an empty default gemset was the problem I also ran rvm use --create 2.0.0@... to get a non-default gemset created and then (successfully) installed a gem and its dependencies into it.

    I hope this helps!

提交回复
热议问题