Installing Rails on Ubuntu 13.04
I tried installing rails according to this guide, and when I do, I get this error:
$ sudo gem install rails
WARNING: Error fetching data: Errno::ENOENT: No such file or directory - getaddrinfo (http://rubygems.org/specs.4.8.gz)
WARNING: Error fetching data: Errno::ENOENT: No such file or directory - getaddrinfo (http://rubygems.org/latest_specs.4.8.gz)
Building native extensions. This could take a while...
ERROR: Error installing rails:
ERROR: Failed to build gem native extension.
/usr/bin/ruby1.9.1 extconf.rb
/usr/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require': cannot load such file -- mkmf (LoadError)
from /usr/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
from extconf.rb:1:in `<main>'
Gem files will remain installed in /var/lib/gems/1.9.1/gems/json-1.8.0 for inspection.
Results logged to /var/lib/gems/1.9.1/gems/json- 1.8.0/ext/json/ext/generator/gem_make.out
I've never seen anything like this before, so any feedback would be greatly appreciated.
ruby rails
bumped to the homepage by Community♦ 7 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I tried installing rails according to this guide, and when I do, I get this error:
$ sudo gem install rails
WARNING: Error fetching data: Errno::ENOENT: No such file or directory - getaddrinfo (http://rubygems.org/specs.4.8.gz)
WARNING: Error fetching data: Errno::ENOENT: No such file or directory - getaddrinfo (http://rubygems.org/latest_specs.4.8.gz)
Building native extensions. This could take a while...
ERROR: Error installing rails:
ERROR: Failed to build gem native extension.
/usr/bin/ruby1.9.1 extconf.rb
/usr/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require': cannot load such file -- mkmf (LoadError)
from /usr/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
from extconf.rb:1:in `<main>'
Gem files will remain installed in /var/lib/gems/1.9.1/gems/json-1.8.0 for inspection.
Results logged to /var/lib/gems/1.9.1/gems/json- 1.8.0/ext/json/ext/generator/gem_make.out
I've never seen anything like this before, so any feedback would be greatly appreciated.
ruby rails
bumped to the homepage by Community♦ 7 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I tried installing rails according to this guide, and when I do, I get this error:
$ sudo gem install rails
WARNING: Error fetching data: Errno::ENOENT: No such file or directory - getaddrinfo (http://rubygems.org/specs.4.8.gz)
WARNING: Error fetching data: Errno::ENOENT: No such file or directory - getaddrinfo (http://rubygems.org/latest_specs.4.8.gz)
Building native extensions. This could take a while...
ERROR: Error installing rails:
ERROR: Failed to build gem native extension.
/usr/bin/ruby1.9.1 extconf.rb
/usr/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require': cannot load such file -- mkmf (LoadError)
from /usr/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
from extconf.rb:1:in `<main>'
Gem files will remain installed in /var/lib/gems/1.9.1/gems/json-1.8.0 for inspection.
Results logged to /var/lib/gems/1.9.1/gems/json- 1.8.0/ext/json/ext/generator/gem_make.out
I've never seen anything like this before, so any feedback would be greatly appreciated.
ruby rails
I tried installing rails according to this guide, and when I do, I get this error:
$ sudo gem install rails
WARNING: Error fetching data: Errno::ENOENT: No such file or directory - getaddrinfo (http://rubygems.org/specs.4.8.gz)
WARNING: Error fetching data: Errno::ENOENT: No such file or directory - getaddrinfo (http://rubygems.org/latest_specs.4.8.gz)
Building native extensions. This could take a while...
ERROR: Error installing rails:
ERROR: Failed to build gem native extension.
/usr/bin/ruby1.9.1 extconf.rb
/usr/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require': cannot load such file -- mkmf (LoadError)
from /usr/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
from extconf.rb:1:in `<main>'
Gem files will remain installed in /var/lib/gems/1.9.1/gems/json-1.8.0 for inspection.
Results logged to /var/lib/gems/1.9.1/gems/json- 1.8.0/ext/json/ext/generator/gem_make.out
I've never seen anything like this before, so any feedback would be greatly appreciated.
ruby rails
ruby rails
asked Jun 3 '13 at 13:06
JShoeJShoe
3071413
3071413
bumped to the homepage by Community♦ 7 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 7 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Try to re-install Ruby, then Gem and then install Rails. Problem maybe is on Ruby or Gem.
add a comment |
try to use rvm or rbenv they both works great .. i personally prefer rvm because i want to keep gem-sets separate for different projects . see https://github.com/sstephenson/rbenv
if you want to simple installation just using one ruby version then go for rbenv Rbenv Installation instruction ( my blog post )
Installing rbenv
Setup:
sudo apt-get update
sudo apt-get upgrade -y
Install required components for Ruby and other dependencies.
sudo apt-get install git-core -y
sudo apt-get install curl -y
sudo apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev libgdbm-dev ncurses-dev automake libtool bison subversion pkg-config libffi-dev
git clone git://github.com/sstephenson/rbenv.git ~/.rbenv
echo ‘export PATH="$HOME/.rbenv/bin:$PATH"’ >> ~/.profile
echo ‘eval "$(rbenv init -)"’ >> ~/.profile
(Note: modify .bash_profile , .bash_login or .zshrc according to your needs.)
Now install some required rbenv plugins.
cd ~/.rbenv/
mkdir plugins
cd ~/.rbenv/plugins
git clone git://github.com/sstephenson/ruby-build.git
Restart the terminal.
Installing Ruby
rbenv install 1.9.3-p385
Set your global Ruby version.
rbenv global 1.9.3-p385
rbenv rehash
ruby -v
Install Ruby on Rails Framework
gem install bundler
gem install rails
(Don't panic, installing rails will take some time.)
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f303551%2finstalling-rails-on-ubuntu-13-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try to re-install Ruby, then Gem and then install Rails. Problem maybe is on Ruby or Gem.
add a comment |
Try to re-install Ruby, then Gem and then install Rails. Problem maybe is on Ruby or Gem.
add a comment |
Try to re-install Ruby, then Gem and then install Rails. Problem maybe is on Ruby or Gem.
Try to re-install Ruby, then Gem and then install Rails. Problem maybe is on Ruby or Gem.
answered Jun 3 '13 at 13:10
Ziyaddin SadigovZiyaddin Sadigov
2,36951931
2,36951931
add a comment |
add a comment |
try to use rvm or rbenv they both works great .. i personally prefer rvm because i want to keep gem-sets separate for different projects . see https://github.com/sstephenson/rbenv
if you want to simple installation just using one ruby version then go for rbenv Rbenv Installation instruction ( my blog post )
Installing rbenv
Setup:
sudo apt-get update
sudo apt-get upgrade -y
Install required components for Ruby and other dependencies.
sudo apt-get install git-core -y
sudo apt-get install curl -y
sudo apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev libgdbm-dev ncurses-dev automake libtool bison subversion pkg-config libffi-dev
git clone git://github.com/sstephenson/rbenv.git ~/.rbenv
echo ‘export PATH="$HOME/.rbenv/bin:$PATH"’ >> ~/.profile
echo ‘eval "$(rbenv init -)"’ >> ~/.profile
(Note: modify .bash_profile , .bash_login or .zshrc according to your needs.)
Now install some required rbenv plugins.
cd ~/.rbenv/
mkdir plugins
cd ~/.rbenv/plugins
git clone git://github.com/sstephenson/ruby-build.git
Restart the terminal.
Installing Ruby
rbenv install 1.9.3-p385
Set your global Ruby version.
rbenv global 1.9.3-p385
rbenv rehash
ruby -v
Install Ruby on Rails Framework
gem install bundler
gem install rails
(Don't panic, installing rails will take some time.)
add a comment |
try to use rvm or rbenv they both works great .. i personally prefer rvm because i want to keep gem-sets separate for different projects . see https://github.com/sstephenson/rbenv
if you want to simple installation just using one ruby version then go for rbenv Rbenv Installation instruction ( my blog post )
Installing rbenv
Setup:
sudo apt-get update
sudo apt-get upgrade -y
Install required components for Ruby and other dependencies.
sudo apt-get install git-core -y
sudo apt-get install curl -y
sudo apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev libgdbm-dev ncurses-dev automake libtool bison subversion pkg-config libffi-dev
git clone git://github.com/sstephenson/rbenv.git ~/.rbenv
echo ‘export PATH="$HOME/.rbenv/bin:$PATH"’ >> ~/.profile
echo ‘eval "$(rbenv init -)"’ >> ~/.profile
(Note: modify .bash_profile , .bash_login or .zshrc according to your needs.)
Now install some required rbenv plugins.
cd ~/.rbenv/
mkdir plugins
cd ~/.rbenv/plugins
git clone git://github.com/sstephenson/ruby-build.git
Restart the terminal.
Installing Ruby
rbenv install 1.9.3-p385
Set your global Ruby version.
rbenv global 1.9.3-p385
rbenv rehash
ruby -v
Install Ruby on Rails Framework
gem install bundler
gem install rails
(Don't panic, installing rails will take some time.)
add a comment |
try to use rvm or rbenv they both works great .. i personally prefer rvm because i want to keep gem-sets separate for different projects . see https://github.com/sstephenson/rbenv
if you want to simple installation just using one ruby version then go for rbenv Rbenv Installation instruction ( my blog post )
Installing rbenv
Setup:
sudo apt-get update
sudo apt-get upgrade -y
Install required components for Ruby and other dependencies.
sudo apt-get install git-core -y
sudo apt-get install curl -y
sudo apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev libgdbm-dev ncurses-dev automake libtool bison subversion pkg-config libffi-dev
git clone git://github.com/sstephenson/rbenv.git ~/.rbenv
echo ‘export PATH="$HOME/.rbenv/bin:$PATH"’ >> ~/.profile
echo ‘eval "$(rbenv init -)"’ >> ~/.profile
(Note: modify .bash_profile , .bash_login or .zshrc according to your needs.)
Now install some required rbenv plugins.
cd ~/.rbenv/
mkdir plugins
cd ~/.rbenv/plugins
git clone git://github.com/sstephenson/ruby-build.git
Restart the terminal.
Installing Ruby
rbenv install 1.9.3-p385
Set your global Ruby version.
rbenv global 1.9.3-p385
rbenv rehash
ruby -v
Install Ruby on Rails Framework
gem install bundler
gem install rails
(Don't panic, installing rails will take some time.)
try to use rvm or rbenv they both works great .. i personally prefer rvm because i want to keep gem-sets separate for different projects . see https://github.com/sstephenson/rbenv
if you want to simple installation just using one ruby version then go for rbenv Rbenv Installation instruction ( my blog post )
Installing rbenv
Setup:
sudo apt-get update
sudo apt-get upgrade -y
Install required components for Ruby and other dependencies.
sudo apt-get install git-core -y
sudo apt-get install curl -y
sudo apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev libgdbm-dev ncurses-dev automake libtool bison subversion pkg-config libffi-dev
git clone git://github.com/sstephenson/rbenv.git ~/.rbenv
echo ‘export PATH="$HOME/.rbenv/bin:$PATH"’ >> ~/.profile
echo ‘eval "$(rbenv init -)"’ >> ~/.profile
(Note: modify .bash_profile , .bash_login or .zshrc according to your needs.)
Now install some required rbenv plugins.
cd ~/.rbenv/
mkdir plugins
cd ~/.rbenv/plugins
git clone git://github.com/sstephenson/ruby-build.git
Restart the terminal.
Installing Ruby
rbenv install 1.9.3-p385
Set your global Ruby version.
rbenv global 1.9.3-p385
rbenv rehash
ruby -v
Install Ruby on Rails Framework
gem install bundler
gem install rails
(Don't panic, installing rails will take some time.)
edited Aug 28 '14 at 4:41
karel
59.9k13129152
59.9k13129152
answered Aug 19 '13 at 6:31
Alok YadavAlok Yadav
1116
1116
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f303551%2finstalling-rails-on-ubuntu-13-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown