我处于一个奇怪的情况,我在我的 RVM gemset 中安装了 bundler,它说它安装正确,但是当我尝试运行时,它要求我再次安装 bundler:这是我的终端交互的记录:
abc@li243-166:/srv/www/dinner/current$ bundle
ERROR: Gem bundler is not installed, run `gem install bundler` first.
abc@li243-166:/srv/www/dinner/current$ gem install bundler
Successfully installed bundler-1.3.5
1 gem installed
abc@li243-166:/srv/www/dinner/current$ bundle
ERROR: Gem bundler is not installed, run `gem install bundler` first.
abc@li243-166:/srv/www/dinner/current$
答案1
您可能需要运行rvm use ruby-x.y.z-pA
命令来设置您正在使用的特定 ruby 环境,尤其是 gemset。完成后,一切都会好起来。
答案2
我不得不重新安装 gem 和 gemsets