ROR安装无法正常安装

时间:2015-10-12 05:19:38

标签: ruby

** ROR安装无法正确安装**

关机系统后Rails服务器没有连接,即使我输入了命令rails s

有人可以用正确的方式来管理Ruby on Rails吗?

1 个答案:

答案 0 :(得分:1)

好像你没有在你的系统上安装nokogiri。在尝试运行rails服务器之前,您需要这样做。

如果您使用的是Mac OSX,请尝试使用此命令安装nokogiri(根据需要更改版本):

gem install nokogiri -- --use-system-libraries=true --with-xml2-include=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/usr/include/libxml2

然后,尝试再次运行rails s命令。

您可能还想查看official page for nokogiri installation.