Cannot install ruby-debug gem on Windows

后端 未结 7 1014
难免孤独
难免孤独 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:03

    Also you can try this:

    gem install ruby-debug-ide --platform=ruby --pre
    
    0 讨论(0)
  • 2020-12-16 23:04

    this port of ruby-debug that works on 1.9.2 and 1.9.3 worked for me. Just type

    gem install debugger
    
    0 讨论(0)
  • 2020-12-16 23:08

    Execute Below command and its works

    C:\Users\Steve>gem install ruby-debug --platform=mswin32

    0 讨论(0)
  • 2020-12-16 23:14

    I ran into the same problem. Following steps should get you through:

    1. Install ruby using RubyInstaller
    2. Install devkit
    3. Install ruby-debug19 instead of ruby-debug.

      gem install ruby-debug19

    0 讨论(0)
  • 2020-12-16 23:19

    I found this answer worked easiest for me: http://github.com/oneclick/rubyinstaller/wiki/development-kit

    0 讨论(0)
  • 2020-12-16 23:20

    Run: gem install ruby-debug19

    More info...

    0 讨论(0)
提交回复
热议问题