作为上下文,它位于具有防火墙的远程服务器上。我正在通过代理设置环境。我有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本地扩展这似乎是略有不同的错误。

有提示吗?谢谢!


当前回答

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

其他回答

sudo apt-get --reinstall install ruby

试试ubuntu 16.04

如果你正在使用ruby 2.0或2.2(感谢@patrick-davey)或2.3(感谢@juanitofatas)。

sudo apt-get install ruby-dev
sudo apt-get install ruby2.0-dev
sudo apt-get install ruby2.2-dev
sudo apt-get install ruby2.3-dev

你在这里得到了模式。

对于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

大多数投票的解决方案在我的机器上不起作用(linux mint 18.04)。 仔细一看,我发现g++不见了。 解决与

Sudo apt-get安装g++

在你按照Joki回答的建议(下面)和如果:

你有MacOS 10.14.6 在/Library/Developer/CommandLineTools/ sdk /目录下有文件夹 MacOSX10.14 MacOSX.sdk(象征性的)。sdk, MacOSX10.15.sdk MacOSX10.15移动。SDK到任何地方(需要管理特权) 删除符号链接(需要管理员权限) 在/Library/Developer/CommandLineTools/ sdk /目录下创建另一个指向MacOSX10.14的符号链接。SDK文件夹使用(需要管理权限) sudo ln -s /Library/Developer/CommandLineTools/ sdk /MacOSX10.14.使用实例sdk MacOSX.sdk 现在你可以跟着Joki的答案走了

警告! 如果你移动MacOSX10.15。sdk文件夹到/Library/Developer/CommandLineTools/ sdk /再次,命令

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

将显示MacOSX10.15。sdk文件夹像默认再次,现在我不知道如何修复它!我的建议,压缩文件夹,并把原来的文件夹,直到修复将可用。