2

这可能是一种“它是否已插入?” 问题,但是在获得 Ubuntu 11.04 的默认 Rackspace 映像之后。运行命令(以 root 身份)

apt-get install rake

因错误而失败

Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package rake

我确定我错过了一些简单的东西。

4

2 回答 2

7

似乎该rake包不在 11.04 源中,但在 10.10 源中。

apt-get install rake在 11.04 开始工作:

将以下行添加到/etc/apt/sources.list

deb http://archive.ubuntu.com/ubuntu/ maverick main restricted universe

deb-src http://archive.ubuntu.com/ubuntu/ maverick main restricted universe

更新包列表

apt-get update

现在rake应该可用:

apt-get install rake

于 2011-12-05T22:56:29.570 回答
6

尝试gem install rake

使用rvm可能比使用 Ubuntu 的 Ruby 和 Gem 更好。

于 2011-12-05T14:30:22.047 回答