我有一些问题 cocoapods 安装

I have some problem cocoapods installation

我正在尝试将 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

您似乎没有安装 Ruby 开发头文件。

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

xcode-select --install
sudo xcodebuild -license

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

转到 Xcode 首选项,然后单击位置 -> 命令行工具 -> 单击下拉菜单并检查是否有可用的选项。如果是,则 select 并设置它。然后尝试安装 cocoa pods 它按预期工作。

如果命令行工具的下拉列表中没有可用选项,则使用以下命令

xcode-select --install
sudo xcodebuild -license