我最近使用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
我已经研究过一个答案,但没有任何对我有用。有人能帮帮我吗?
答案 0 :(得分:1)
安装rails之前是否安装了数据库? Rails适用于许多数据库,如MySQL,Oracle等。如果你刚开始,你应该安装SQLite。安装rails的正确步骤如下
遵循这些步骤将确保您在安装rails时没有问题。您不需要安装Web服务器,因为Rails附带了Webrick Web服务器,这将很好地用于开发和测试。
希望这有帮助。