Cannot install ruby-debug gem on Windows

后端 未结 7 1021
难免孤独
难免孤独 2020-12-16 22:50

I\'m having trouble installing the Ruby-Debug Gem on windows. What does this error mean? How can I fix this? Thanks



        
7条回答
  •  甜味超标
    2020-12-16 23:20

    The error seems clear:

    Can't handle 1.9.x yet
    
    *** extconf.rb failed ***
    

    You're trying to install ruby-debug gem, which is compatible only with Ruby 1.8.x on Ruby 1.9.x

    Please install ruby-debug19, which is compatible with Ruby 1.9.x

    gem install ruby-debug19
    

提交回复
热议问题