开发者问题收集

我无法安装 pod

2020-05-19
3170

我无法安装 pod。 这是错误。 我需要您的帮助。

 xcrun: error: SDK "iphoneos" cannot be located
    xcrun: error: SDK "iphoneos" cannot be located
    xcrun: error: SDK "iphoneos" cannot be located
    xcrun: error: unable to lookup item 'Path' in SDK 'iphoneos'
    /Users/dan/Library/Caches/CocoaPods/Pods/Release/Flipper-Glog/0.3.6-1dfd6/missing: Unknown `--is-lightweight' option
    Try `/Users/dan/Library/Caches/CocoaPods/Pods/Release/Flipper-Glog/0.3.6-1dfd6/missing --help' for more information
    configure: WARNING: 'missing' script is too old or missing
    configure: error: in `/Users/dan/Library/Caches/CocoaPods/Pods/Release/Flipper-Glog/0.3.6-1dfd6':
    configure: error: C compiler cannot create executables
    See `config.log' for more details
3个回答

继续前往 Xcode > 偏好设置 > 位置。

检查命令行工具是否被选中且不为空。

在此处输入图片描述

Mihir Gurjar
2020-06-16

这些错误表明 C 编译器无法正常工作。

请确保在设置新机器时使用正确的 Xcode,这里修复了 iPhone sdk 问题。

运行此命令

sudo xcode-select --print-path

如果安装了 XCode,您应该会看到错误的安装路径,例如 /Library/Developer/ 或类似的路径:您的 XCode 安装很可能位于其他位置 - 例如 /Applications/ 文件夹中。如果是这样,您可以通过输入以下命令来解决问题:

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

感谢这个命令:

点击查看详细信息

petrov
2021-01-05

如果其他解决方案尚未奏效。

在主项目文件夹中尝试以下内容

git config --global core.autocrlf false

然后,

cd ios
pod install

它对我有用

Ahmad hassan
2021-06-09