我正在尝试按照此帖中的说明操作:http://net.tutsplus.com/tutorials/ruby/how-to-install-ruby-on-a-mac/
在我的Mac上安装Ruby。但是我收到了这个错误:
RyanT:~$ \curl -L https://get.rvm.io | bash -s stable --rails --autolibs=enabled
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 15790 100 15790 0 0 14754 0 0:00:01 0:00:01 --:--:-- 14754
ERROR: Could not find GNU compatible version of 'tar' command, make sure it's available first before continuing installation.
我确实运行了这个:
brew install gnu-tar --default-names
在一篇关于GNU的博客文章中找到了这个命令。然而,它没有帮助。
搜索Google我找不到其他有此错误的人。有没有人有任何建议?
答案 0 :(得分:3)
您可以显式设置tar,看看它是否适合您。由于你安装了gnu-tar,tar命令是gtar
curl -L https://get.rvm.io | rvm_tar_command=gtar bash -s stable
或完整路径
curl -L https://get.rvm.io | rvm_tar_command=/usr/local/Cellar/gnu-tar/<VERSIONNUMBER>/bin/gtar bash -s stable
答案 1 :(得分:0)