Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

RubyGems Environment:
- RUBYGEMS VERSION: 1.8.24
- RUBY VERSION: 1.8.7 (2011-06-30 patchlevel 352) [x86_64-linux]
- INSTALLATION DIRECTORY: /usr/lib/ruby/gems/1.8
- RUBY EXECUTABLE: /usr/bin/ruby1.8
- EXECUTABLE DIRECTORY: /usr/bin
- RUBYGEMS PLATFORMS:
- ruby
- x86_64-linux
- GEM PATHS:
- /usr/lib/ruby/gems/1.8
- /root/.gem/ruby/1.8
- GEM CONFIGURATION:
- :update_sources => true
- :verbose => true
- :benchmark => false
- :backtrace => false
- :bulk_threshold => 1000
- REMOTE SOURCES:
- http://rubygems.org/

But when I run gem install rails I got the following error:

Building native extensions. This could take a while... ERROR: Error installing rails: ERROR: Failed to build gem native extension.

    /usr/bin/ruby1.8 extconf.rb   creating Makefile  

make sh: 1: make: not found

Gem files will remain installed in /usr/lib/ruby/gems/1.8/gems/json-1.7.5 for inspection. Results logged to /usr/lib/ruby/gems/1.8/gems/json-1.7.5/ext/json/ext/generator/gem_make.out

Do you guys have any clue about what's going on?
Right now when I run gem listI got the following but no Rails installed.

* LOCAL GEMS *

actionmailer (3.2.8)
actionpack (3.2.8)
activemodel (3.2.8)
activerecord (3.2.8)
activeresource (3.2.8)
activesupport (3.2.8)
arel (3.0.2)
builder (3.0.4)
erubis (2.7.0)
hike (1.2.1)
i18n (0.6.1)
journey (1.0.4)
mail (2.4.4)
mime-types (1.19)
multi_json (1.3.7)
polyglot (0.3.3)
rack (1.4.1)
rack-cache (1.2)
rack-ssl (1.3.2)
rack-test (0.6.2)
rake (0.9.2.2)
sprockets (2.1.3)
thor (0.16.0)
tilt (1.3.3)
treetop (1.4.12)
tzinfo (0.3.35)

share|improve this question

closed as off topic by Jani Hartikainen, KooKiz, Praveen Kumar, stealthyninja, Bo Persson Nov 10 '12 at 18:10

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

You must have make installed. You can typically install it on Ubuntu with [sudo] apt-get install build-essential.

share|improve this answer
Thanks brother, it's all running now! – n370 Nov 9 '12 at 22:20

Not the answer you're looking for? Browse other questions tagged or ask your own question.