作为上下文,它位于具有防火墙的远程服务器上。我正在通过代理设置环境。我有ruby 1.8.7。当我尝试gem安装..

sudo gem install --http-proxy <host address>:<port> json

我得到以下错误:

Building native extensions.  This could take a while...
ERROR:  Error installing json:
        ERROR: Failed to build gem native extension.

/usr/bin/ruby extconf.rb
mkmf.rb can't find header files for ruby at /usr/lib/ruby/ruby.h

Gem files will remain installed in /usr/lib64/ruby/gems/1.8/gems/json-1.8.1 for inspection.
Results logged to /usr/lib64/ruby/gems/1.8/gems/json-1.8.1/ext/json/ext/generator/gem_make.out

因为我不确定是什么问题,我谷歌了一下,找到了这些

gem安装:构建gem本地扩展失败(找不到头文件)-这里的说明似乎是特定于正在安装的gem。 如何安装json gem -未能建立gem本地扩展这似乎是略有不同的错误。

有提示吗?谢谢!


当前回答

在Fedora 21及更高版本中,只需打开一个终端,以根用户身份安装Ruby Development文件。

dnf install ruby-devel

其他回答

Xcode ->偏好->位置

将命令行工具更改为Xcode 11.2.1

对于macOS 10.14上的Xcode 11,即使在安装Xcode和安装命令行工具并接受许可证之后,也会发生这种情况

sudo xcode-select --install
sudo xcodebuild -license accept

问题是Xcode 11发布了macOS 10.15 SDK,其中包括ruby2.6的头文件,但不包括macOS 10.14的ruby2.3。你可以通过运行来验证这就是你的问题所在

ruby -rrbconfig -e 'puts RbConfig::CONFIG["rubyhdrdir"]'

在macOS 10.14和Xcode 11上打印不存在的路径

/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/include/ruby-2.3.0

然而,Xcode 11在/Library/Developer/CommandLineTools/SDK /MacOS10.14.sdk中安装了一个macOS 10.14 SDK。没有必要像其他回答中建议的那样通过安装旧的头文件来污染系统目录。相反,通过选择该SDK,将找到合适的ruby2.3头文件:

sudo xcode-select --switch /Library/Developer/CommandLineTools
ruby -rrbconfig -e 'puts RbConfig::CONFIG["rubyhdrdir"]'

现在应该正确打印了

/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/include/ruby-2.3.0

同样地,gem安装应该在选择SDK时正常工作。

要切换回当前的Xcode SDK,使用

sudo xcode-select --switch /Applications/Xcode.app

我也遇到过这个问题,因为我是通过brightbox在Ubuntu上安装Ruby的,我以为Ruby -dev是Ruby的主干。所以我没有安装。安装ruby2.3-dev修复它:

sudo apt-get install ruby2.3-dev

安装ruby-devel后,可能需要安装gcc

Xcode 11 / macOS Catalina

在Xcode 11 /macOS Catalina上,头文件不在原来的位置,也不在原来的/Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14。PKG文件不再可用。

相反,头文件现在被安装到当前SDK路径的/usr/include目录:

/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include

通过使用xcrun——show-sdk-path的输出可以找到该目录的大部分内容。如果您将此路径添加到CPATH环境变量,那么构建脚本(包括那些通过bundle调用的脚本)通常能够找到它。

我通过在我的.zshrc文件中设置CPATH来解决这个问题:

export CPATH="$(xcrun --show-sdk-path)/usr/include"

在打开一个新的shell(或运行source .zshrc)后,我不再收到错误消息mkmf。Rb无法在/usr/lib/ruby/ruby.h找到ruby的头文件,rubygems安装正确。

注意构建到非macos平台 如果构建到非macOS平台,如iOS/tvOS/watchOS,此更改将尝试在这些平台中包含macOS SDK,从而导致构建错误。要解决这个问题,要么在登录时不设置CPATH环境变量,要么在运行xcodebuild时临时将其设置为空白,如下所示: CPATH="" xcodebuild——some-args .