无法在新 Macbook Air mac osx 10.9.4 上安装 rbenv 的 ruby 版本



我买了一台新的Macbook Air(2014年7月),我试图恢复一些用Rails构建的项目。

唯一真正的Ruby是System。

我的配置:

  • OSX 10.9.4
  • code-select version 2333.
  • 家酿0.9.5
  • rbenv 0.4.0
  • ruby-build 20140702

错误:

当我尝试安装最后一个ruby(2.1.2)时,我的堆栈跟踪:

rbenv install 2.1.2                         
Downloading ruby-2.1.2.tar.gz...
-> http://dqw8nmjcqpjn7.cloudfront.net/f22a6447811a81f3c808d1c2a5ce3b5f5f0955c68c9a749182feb425589e6635
Installing ruby-2.1.2...
mkdir: /usr/local/bin/rbenv/versions/2.1.2/lib: Not a directory
BUILD FAILED
Inspect or clean up the working tree at /var/folders/s_/8fwdv8c52q12dy5dd69xjc2r0000gn/T/ruby-build.20140715154952.19296
Results logged to /var/folders/s_/8fwdv8c52q12dy5dd69xjc2r0000gn/T/ruby-build.20140715154952.19296.log
Last 10 log lines:
x ruby-2.1.2/insns_info.inc
x ruby-2.1.2/vm.inc
x ruby-2.1.2/thread.c
x ruby-2.1.2/regcomp.c
x ruby-2.1.2/encdb.h
x ruby-2.1.2/GPL
x ruby-2.1.2/vmtc.inc
x ruby-2.1.2/probes_helper.h
x ruby-2.1.2/ruby_atomic.h
/var/folders/s_/8fwdv8c52q12dy5dd69xjc2r0000gn/T/ruby-build.20140715154952.19296/ruby-2.1.2 /var/folders/s_/8fwdv8c52q12dy5dd69xjc2r0000gn/T/ruby-build.20140715154952.19296 ~/Sites/my_project
rm: /usr/local/bin/rbenv/versions/2.1.2: Not a directory

我的堆栈跟踪当我试图安装最后一个补丁的ruby 2.0.0(取代系统的p451而不是p481):

rbenv install 2.0.0-p481    
Downloading ruby-2.0.0-p481.tar.gz...
-> http://dqw8nmjcqpjn7.cloudfront.net/00dd3d72435eb77f2bd94537c1738e5219ca42b6d68df3d4f20c183f4bd12d0f Installing ruby-2.0.0-p481...
BUILD FAILED
Inspect or clean up the working tree at /var/folders/s_/8fwdv8c52q12dy5dd69xjc2r0000gn/T/ruby-build.20140715155606.19406 
Results logged to /var/folders/s_/8fwdv8c52q12dy5dd69xjc2r0000gn/T/ruby-build.20140715155606.19406.log
Last 10 log lines:  from ./tool/rbinstall.rb:192:in `makedirs'  
  from ./tool/rbinstall.rb:296:in `prepare'     
  from ./tool/rbinstall.rb:335:in `block in <main>'     
  from ./tool/rbinstall.rb:774:in `call'    
  from ./tool/rbinstall.rb:774:in `block (2 levels) in <main>'  
  from ./tool/rbinstall.rb:771:in `each'    
  from ./tool/rbinstall.rb:771:in `block in <main>'     
  from ./tool/rbinstall.rb:767:in `each'    
  from ./tool/rbinstall.rb:767:in `<main>' 
make: *** [do-install-all] Error 1 
rm: /usr/local/bin/rbenv/versions/2.0.0-p481: Not a directory

更多配置细节:

brew list
autoconf    gettext     git     openssl     ossp-uuid   pkg-config  postgresql  rbenv       readline    ruby-build  sip

Rbenv,system的Ruby版本:

rbenv versions
* system (set by /usr/local/Cellar/rbenv/version)
ruby -v
ruby 2.0.0p451 (2014-02-24 revision 45167) [universal.x86_64-darwin13]

my .zshrc:

export PATH=~/.rbenv/shims:$PATH
# Set up rbenv for Homebrew. Make sure path is BEFORE Homebrew's /usr/local/[s]bin
#To enable shims and autocompletion add to your profile:
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
eval "$(rbenv init -)"
source ~/.profile

和我的。profile的结尾:

# export RBENV_ROOT=/usr/local/bin/rbenv
export RBENV_ROOT=/usr/local/Cellar/rbenv/

我试了这个:rbenv install ruby BUILD FAILED,但是它没有改变任何东西。

任何想法?

卸载XCode for dev tools失败

使用brew link openssl——force不工作

在openssl中使用CONFIGURE_OPTS无法工作。

但RUBY_CONFIGURE_OPTS工作:

RUBY_CONFIGURE_OPTS="--with-openssl-dir=/usr/local/Cellar/openssl/1.0.1h" rbenv install 2.1.2

YEAH BABY !

最新更新