我正在尝试按照说明从命令行安装以下gem: https://github.com/maxdemarzi/neography
执行: 宝石'neography'
“未知命令neography”中的结果。
我从执行“gem install bundle”安装了“bundle”gem。
我错过了什么步骤?这是否必须为每个项目完成?或者这应该安装到环境中?
答案 0 :(得分:4)
您正在寻找的命令是gem install neography
。
要为您的应用程序创建Gemfile,您需要查看bundler gem的Gemfile。基本上,只需在项目根目录中创建一个名为Gemfile
的文件,其中包含源和您的gems列表,然后运行命令bundle install
。
在这种情况下适合您的Gemfile是:
# Gemfile
source 'https://rubygems.org'
gem 'neography'