我尝试在Ruby 2.3.1中使用Rails 5.0.0.rc1,但是,如果我尝试在“programming”目录中创建一个新项目,则会出现以下情况:
➜ ~/Documents/Programming rails new foo
Could not find proper version of railties (4.2.5.1) in any of the sources
Run `bundle install` to install missing gems.
如果我使用gem列表,我在5.0.0.rc1中安装的唯一rails版本。有趣的是,当我使用rails -v时,我会得到同样的错误,但当我从主目录中使用时,不会:
➜ ~ rails -v
Rails 5.0.0.rc1
➜ ~ cd Documents/Programming
➜ ~/Documents/Programming rails -v
Could not find proper version of railties (4.2.5.1) in any of the sources
Run `bundle install` to install missing gems.
我试过卸载和重新安装rails和railties,结果都是一样的。我正在使用rvm,不得不这样做
gem install nokogiri -- --use-system-libraries
安装野鬼切。
2条答案
按热度按时间pod7payv1#
首先运行gem更新rails,然后运行捆绑包更新
tcomlyy62#
谢谢我不需要删除任何东西它的工作只是使用
bundle update
在我的项目目录试试看