每当我运行rake命令(即rake路由),我得到这个
错误:
You have already activated rake 0.9.2.2,but your Gemfile requires rake 0.9.2. Using bundle exec may solve this.
如果我运行捆绑exec rake路由它工作.
我想要能够简单地耙路径,而不必运行bundle exec rake路由.
我看过其他类似错误的问题,并尝试过各种解决方案(如运行捆绑更新)无效.
另外,在我的gemfile中我指定了gem’rake’,’0.9.2′
有什么建议么?
尝试执行:
gem list
你可能会看到一些安装了rake的版本.顺便说一下,bundle exec是在rails应用程序的上下文中执行代码的正确方法,请参阅this获得一个很好的解释.因此,您可以使用别名输入较少的别名.
原文链接:https://www.f2er.com/ruby/273967.html