首页 > 解决方案 > 我有一些问题 cocoapods 安装

问题描述

我正在尝试将 cocoapods 安装到我的 MacBook,在我将此代码运行到终端后,gem install cocoapods我收到以下错误:

****** ~ % sudo gem install cocoapods

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

    current directory: /Library/Ruby/Gems/2.6.0/gems/ffi-1.12.2/ext/ffi_c
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/bin/ruby -I /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0 -r ./siteconf20200413-663-1dklrnl.rb extconf.rb
mkmf.rb can't find header files for ruby at /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/include/ruby.h

You might have to install separate package for the ruby development
environment, ruby-dev or ruby-devel for example.

extconf failed, exit code 1

Gem files will remain installed in /Library/Ruby/Gems/2.6.0/gems/ffi-1.12.2 for inspection.
Results logged to /Library/Ruby/Gems/2.6.0/extensions/universal-darwin-19/2.6.0/ffi-1.12.2/gem_make.out

标签: iosinstallationcocoapods

解决方案


看起来您还没有安装 Ruby 开发标头。

您可以通过执行以下两个命令来安装 Xcode 命令行工具来解决此问题:

xcode-select --install
sudo xcodebuild -license

计算机重新启动后将应用更改。


推荐阅读