我正在关注https://gorails.com/deploy/ubuntu/16.04
最初我有一个版本的capistrano 3.8.1,我最初的问题是:
nicoara@ubuntu:~/deploy_test$ cap install STAGES=production
/home/nicoara/.rbenv/versions/2.2.3/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require': cannot load such file -- capistrano/cli (LoadError)
我用“gem install rvm-capistrano”来解决这个问题,它安装了另一个版本的capistrano,2.15.6,现在错误是:
nicoara@ubuntu:~/deploy_test$ cap install STAGES=production:
`require': cannot load such file -- capistrano/setup (LoadError)
此时我无法解决。
答案 0 :(得分:1)
正如评论所述,有几个步骤可以遵循:
capistrano/*
个宝石。bundle install
进行安装。cap
添加bundle exec
个命令是额外安全的,即STAGES=production bundle exec cap install
。