Rails Script Segmentation Fault with RVM

后端 未结 1 773
失恋的感觉
失恋的感觉 2021-01-05 03:38

I am getting a segmentation fault. Should which ruby return /usr/local/bin?

maletor$ rails generate mailer ContactMailer
    /Users/maletor/.rv         


        
相关标签:
1条回答
  • 2021-01-05 04:00

    There's a problem with you RVM installation. which should return

    /Users/maletor/.rvm/rubies/ruby-1.9.2-p0/bin/ruby
    

    Upgrade to the latest RVM installation. There was a bug in the 1.0 release with "shell path caching".

    $ rvm get head
    $ rvm reload
    $ rvm repair all
    $ rvm use 1.9.2
    
    0 讨论(0)
提交回复
热议问题