5

我真的很难让我的头脑围绕终端我不断收到命令,但找不到我做错了什么?

我正在尝试使用本教程在 Mac 上安装 ruby​​。 http://www.ruby-lang.org/en/downloads/

但我不断收到错误 sudo: apt-get: command not found

Ben-Easts-iMac:~ Ben$ sudo
usage: sudo [-n] -h | -K | -k | -L | -V | -v
usage: sudo -l[l] [-AnS] [-g groupname|#gid] [-U username] [-u username|#uid]
            [-g groupname|#gid] [command]
usage: sudo [-AbEHnPS] [-C fd] [-g groupname|#gid] [-p prompt] [-u
            username|#uid] [-g groupname|#gid] [VAR=value] [-i|-s] [<command>]
usage: sudo -e [-AnS] [-C fd] [-g groupname|#gid] [-p prompt] [-u
            username|#uid] file ...
Ben-Easts-iMac:~ Ben$ sudo apt-get install ruby1.9.1-full
Password:
sudo: apt-get: command not found
Ben-Easts-iMac:~ Ben$ sudo apt-get install ruby-full
sudo: apt-get: command not found
Ben-Easts-iMac:~ Ben$ sudo apt-get install ruby-full
sudo: apt-get: command not found
Ben-Easts-iMac:~ Ben$ sudo find / -name "apt-get" -print
find: /dev/fd/3: Not a directory
find: /dev/fd/4: Not a directory
sudo which apt-get

有人可以帮助我或给我一个尝试调试的选项。

谢谢

4

4 回答 4

9

apt-get适用于基于 Linux 的 Ubuntu 机器;对于 MAC,请尝试 apt-get 等效项,例如Brew

于 2016-09-03T23:04:32.253 回答
1

您使用的是 linux debian 风格的系统吗?

如果您使用的是 Mac OS(iMac 让我这么认为),您将无法使用 aptitude,因为它在 Mac os 上根本不存在。

我可以建议你去http://www.macports.org/这是一种相同的系统(但基于 Unix 端口)

于 2011-03-08T10:28:04.403 回答
0

我设法最终安装并运行了多么痛苦。

我正在使用 mac os x 版本 10.6.6 运行 imac

我必须先在终端中运行这个命令。须藤端口安装红宝石

好的,很好,然后运行安装了 ruby​​ 好的,所以在安装完成后我可以运行这个命令。

新的轨道

然后为我创建了一个名为“new”的项目,可以得到他们的。

接下来找到一个编辑器来运行 rails——我安装了 netbeans 似乎是一个不错的选择。

接下来打开新项目并使用现有源选择 ruby​​ on rails 应用程序,然后提示我以下错误 - 我没有安装 gem 并运行此命令。

gem install -v=2.3.5 rails

我已经运行了该命令并得到了以下信息。

$ gem install -v=2.3.5 rails
WARNING:  Installing to ~/.gem since /Library/Ruby/Gems/1.8 and
      /usr/bin aren't both writable.
WARNING:  You don't have /Users/Ben/.gem/ruby/1.8/bin in your PATH,
      gem executables will not run.
Successfully installed rails-2.3.5
1 gem installed
Installing ri documentation for rails-2.3.5...
Installing RDoc documentation for rails-2.3.5...

好的,然后我在 NetBeans 上单击“确定”,我在一个项目中不确定是否正确安装了 gems,所以现在开始学习 ruby​​ on rails 并报告问题。

希望这对某人有帮助;)

于 2011-03-08T12:24:26.160 回答
-2

sudo yum install 尝试使用这个

于 2013-11-12T12:01:29.260 回答