我一直在关注这个答案,除了我在OSX Mavericks上:https://stackoverflow.com/a/11436675。
我已经下载了当前版本的Command Line Tools(我也安装了osx-gcc-installer,我不知道这是否重要)。
当我跑:pkgutil --pkg-info=com.apple.pkg.CLTools_Executables
时,我得到:
...
version: 5.1.0.0.1.1396320587
...
所以我肯定安装了命令行工具。我正在尝试安装RVM,因此我运行了此命令:rvm install ruby-2.0.0
并获得以下内容:
Xcode version older than 4.6.2 installed, download and install newer version from:
http://connect.apple.com
After installation open Xcode, go to Downloads and install Command Line Tools.\n'
Xcode version older than 4.6.2 installed, download and install newer version from:
http://connect.apple.com
After installation open Xcode, go to Downloads and install Command Line Tools.
++ return 1
Requirements installation failed with status: 1.
答案 0 :(得分:0)
在你的链接上说:
2)像往常一样安装RVM ......
而且:
rvm install ruby-2.0.0
不是你安装rvm的方式。要安装rvm,请访问rvm网站:
然后向下滚动到页面底部,在RVM标题下,单击“安装”。然后阅读有关如何为您的设置安装rvm的内容,可能是这样的:
1)下载并运行RVM安装脚本
安装稳定版本:
user$ \curl -sSL https://get.rvm.io | bash -s stable
要执行该命令,请打开终端窗口(Applications / Utilities / Terminal),然后cd到您的主目录:
$ cd / Users /
(您的主目录在提示符中以〜表示。)
你也可以cd到你的主目录,这样做:
$ cd ~
或只是:
$ cd
然后复制并粘贴:
\curl -sSL https://get.rvm.io | bash -s stable
在提示右侧,然后点击返回。那将安装rvm。
要让rvm为您安装ruby,请单击rvm网站的链接,向下滚动到页面底部,在Rubies标题下,单击安装Rubies。