创建新应用程序时Ruby on Rails错误?

时间:2014-08-05 07:02:51

标签: ruby-on-rails ruby terminal

我最近使用rails安装程序和本地主机环境的bitnami ruby​​堆栈在rails上安装了ruby。但是,当我运行命令rails new时,我收到此错误:

ERROR:  Error installing rails:
    ERROR: Failed to build gem native extension.

    /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby extconf.rb
creating Makefile

make "DESTDIR="
compiling generator.c
linking shared-object json/ext/generator.bundle
clang: error: unknown argument: '-multiply_definedsuppress' [-Wunused-command-line-argument-hard-error-in-future]
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future
make: *** [generator.bundle] Error 1


Gem files will remain installed in /Library/Ruby/Gems/2.0.0/gems/json-1.8.1 for inspection.
Results logged to /Library/Ruby/Gems/2.0.0/gems/json-1.8.1/ext/json/ext/generator/gem_make.out

我已经研究过一个答案,但没有任何对我有用。有人能帮帮我吗?

1 个答案:

答案 0 :(得分:1)

安装rails之前是否安装了数据库? Rails适用于许多数据库,如MySQL,Oracle等。如果你刚开始,你应该安装SQLite。安装rails的正确步骤如下

  1. 安装RVM
  2. 使用RVM安装Ruby(如果您计划使用Rails 4.0.0或更高版本,则安装2.0.0或更高版本)
  3. 安装Ruby Gems
  4. 安装数据库。如果你使用MySQL安装MySQL2 gem。如果您使用SQLite,则不需要宝石。附:对不起,您还需要为SQLite安装gem。
  5. Rails还需要JavaScript运行时。所以安装Node.js
  6. 最后安装Rails
  7. 遵循这些步骤将确保您在安装rails时没有问题。您不需要安装Web服务器,因为Rails附带了Webrick Web服务器,这将很好地用于开发和测试。

    希望这有帮助。