不能从文件中要求语言学或其他lib

时间:2013-03-31 09:37:04

标签: ruby linux

require 'linguistics'

`require': cannot load such file -- linguistics (LoadError)

但是当我在IRB中尝试测试代码时 - 一切都很好

1 个答案:

答案 0 :(得分:0)

我怀疑您需要编辑应用程序的Gemfile

请参阅:http://gembundler.com/v1.3/gemfile.html

简而言之,编辑Gemfile并添加一行

gem 'linguistics'

然后运行

bundle install

来自您的终端。

然后再次尝试你的rake命令