我发现安装ruby gem的一个非常有趣的问题
bluehat@Matapan:~/code/Amacron$ rails server --debugger
=> Booting WEBrick
=> Rails 3.0.3 application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
You need to install ruby-debug to run the server in debugging mode. With gems, use 'gem install ruby-debug'
Exiting
bluehat@Matapan:~/code/Amacron$ sudo gem install ruby-debug
Successfully installed ruby-debug-0.10.4
1 gem installed
Installing ri documentation for ruby-debug-0.10.4...
Installing RDoc documentation for ruby-debug-0.10.4...
bluehat@Matapan:~/code/Amacron$ rails server --debugger
=> Booting WEBrick
=> Rails 3.0.3 application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
You need to install ruby-debug to run the server in debugging mode. With gems, use 'gem install ruby-debug'
Exiting
bluehat@Matapan:~/code/Amacron$ sudo gem update ruby-debug
Updating installed gems
Nothing to update
bluehat@Matapan:~/code/Amacron$ gem --version
1.3.7
bluehat@Matapan:~/code/Amacron$ rails --version
Rails 3.0.3
系统是最新的Ubuntu 11.04
答案 0 :(得分:9)
您是否将此gem放在应用程序的Gemfile中?
答案 1 :(得分:1)
我通过安装irb包解决了这个问题。错误消息是关于ruby-debug,但是一旦我安装了为irb打包的debian,一切都很好。
答案 2 :(得分:1)
我有完全相同的问题。原因是在应用程序的Gemfile中,“gem'ruby-debug'”行被注释掉了。我启用了这一行,一切正常。
答案 3 :(得分:0)
我遇到了类似的问题。我尝试将脚本/服务器作为sudo运行,并且工作正常,奇怪的是之后我能够以普通用户身份运行它。