无法通过rbenv macOS High Sierra安装ruby 2.5.0

时间:2018-02-17 06:13:05

标签: ruby rbenv

我正在使用macOS High Sierra并且一直在尝试通过rbenv安装ruby 2.5.0,但一直收到错误

std::string f();
f = "src.Id";

我在安装Apple LLVM version 9.0.0 (clang-900.0.39.2) Target: x86_64-apple-darwin17.4.0 Thread model: posix InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin compiling ./main.c compiling dmydln.c compiling miniinit.c compiling dmyext.c compiling miniprelude.c translating probes probes.d compiling bignum.c compiling class.c error: error reading '/dev/fd/9' 1 error generated. clang: error: unable to remove file: Operation not permitted dtrace: failed to compile script probes.d: Preprocessor failed to process input program make: *** [probes.h] Error 1 make: *** Waiting for unfinished jobs....e

之前尝试了brew doctorbrew upgrade rbenv ruby-build

仍然得到相同的错误

有人知道如何解决这个问题吗?

2 个答案:

答案 0 :(得分:13)

我在使用ruby-build(由rbenv和其他人使用)安装ruby时遇到了类似的问题,我现在使用以下解决方法来避免它。

这似乎是由于dtrace正在使用macOS 10.3.3进行更新。

首先尝试thissudo chmod -s /usr/sbin/dtrace

如果在安装ruby

时{}不起作用,那么disable dtrace

RUBY_CONFIGURE_OPTS="--disable-dtrace" rbenv install 2.5.0

您还可以export RUBY_CONFIGURE_OPTS="--disable-dtrace"发送到.bashrc.zshrc文件。

维护核心团队rbenv/ruby-build has notified的维护者,希望很快得到修复。

答案 1 :(得分:3)

我快疯了,什么也没用,但是禁用防病毒软件对我来说却是诀窍
(在High Sierra和Avira上使用Ruby 2.5.1)