0

我正在尝试按照说明从命令行安装以下 gem: https ://github.com/maxdemarzi/neography

执行:gem 'neography'

结果为“未知命令neography”。

我通过执行“gem install bundle”安装了“bundle”gem。

我错过了什么步骤?是否必须为每个单独的项目执行此操作?或者这应该安装到环境中?

4

1 回答 1

4

您要查找的命令是gem install neography.

要为您的应用程序创建 Gemfile,您需要查看bundler gem 的 Gemfile。基本上,只需创建一个Gemfile在项目根目录中命名的文件,其中包含源代码和 gem 列表,然后运行命令bundle install

在这种情况下适合您的 Gemfile 是:

# Gemfile
source 'https://rubygems.org'
gem 'neography'
于 2013-02-27T05:56:44.913 回答