首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >如何在Ubuntu 12.04上正确安装ruby 2.0.0?

如何在Ubuntu 12.04上正确安装ruby 2.0.0?
EN

Stack Overflow用户
提问于 2013-04-26 03:04:03
回答 4查看 100.4K关注 0票数 79

我已经成功安装了rvm,但是当我运行以下命令时

sudo apt-get update

或者:

rvm install 2.0.0

我有以下错误:

W: Failed to fetch http://ppa.launchpad.net/cheleb/blender-svn/ubuntu/dists/precise/main/source/Sources  404  Not Found

W: Failed to fetch http://ppa.launchpad.net/cheleb/blender-svn/ubuntu/dists/precise/main/binary-amd64/Packages  404  Not Found

W: Failed to fetch http://ppa.launchpad.net/cheleb/blender-svn/ubuntu/dists/precise/main/binary-i386/Packages  404  Not Found

W: Failed to fetch http://ppa.launchpad.net/ferramroberto/oneiric/ubuntu/dists/precise/main/source/Sources  404  Not Found

W: Failed to fetch http://ppa.launchpad.net/ferramroberto/oneiric/ubuntu/dists/precise/main/binary-amd64/Packages  404  Not Found

W: Failed to fetch http://ppa.launchpad.net/ferramroberto/oneiric/ubuntu/dists/precise/main/binary-i386/Packages  404  Not Found

如何修复这些错误?

EN

回答 4

Stack Overflow用户

回答已采纳

发布于 2013-04-26 04:45:01

请按照以下步骤操作

sudo apt-get -y update
sudo apt-get -y install build-essential zlib1g-dev libssl-dev libreadline6-dev libyaml-dev
cd /tmp
wget http://cache.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p481.tar.gz
tar -xvzf ruby-2.0.0-p481.tar.gz
cd ruby-2.0.0-p481/
./configure --prefix=/usr/local
make
sudo make install
票数 191
EN

Stack Overflow用户

发布于 2015-09-15 00:17:04

travis-cli installation instructions for Ubuntu上,Brightbox Ruby NG(NextGeneration) ppa:

$ sudo apt-get install python-software-properties
$ sudo apt-add-repository ppa:brightbox/ruby-ng
$ sudo apt-get update
$ sudo apt-get install ruby2.1 ruby-switch
$ sudo ruby-switch --set ruby2.1
票数 32
EN

Stack Overflow用户

发布于 2014-04-04 02:18:53

虽然这个答案被接受了,但我还是强烈建议使用rvm。我在没有ruby的情况下安装ruby时遇到了麻烦。例如,请参阅本指南:

https://www.digitalocean.com/community/articles/how-to-install-ruby-on-rails-on-ubuntu-12-04-lts-precise-pangolin-with-rvm

票数 7
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/16222738

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档