Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有我的 ruby on rails 应用程序,我已经安装jruby-1.7.4在我的 Windows XP 中。
jruby-1.7.4
当我尝试运行jruby -S bundle install时,它给了我一个错误
jruby -S bundle install
jruby:没有这样的文件或目录——捆绑(LoadError)
我真的很喜欢这个错误..请帮忙..
Bundler 可能没有安装。您可以检查输出以jruby -S gem list进行验证,然后使用以下命令进行安装:
jruby -S gem list
jruby -S gem install bundler
通常, aLoadError意味着您缺少 gem 依赖项。
LoadError