我有一个React Native项目,想为iOS本机特定版本安装可可豆荚,但安装失败,我在Mac book pro上安装了ruby ruby 2.5.1p57
我已将错误信息发布下来,不胜感激
sapply(mylist, function(x) all(sapply(x, class) == d_class))
答案 0 :(得分:17)
答案 1 :(得分:4)
命令 sudo xcode-select --switch /Applications/Xcode.app
回复 xcode-select: 错误:无效的开发者目录 '/Applications/Xcode.app'
命令 xcrun --sdk iphoneos --show-sdk-path
回复 xcrun:错误:无法找到 SDK“iphoneos” xcrun:错误:无法找到 SDK“iphoneos” xcrun:错误:无法在 SDK 'iphoneos' 中查找项目 'Path'
Command 获取 Xcode 路径 Xcode-select --print-path
回复
/Library/Developer/CommandLineTools
解决这个问题
XCode->Preferences->Locations->Command Line Tools 并选择 xcode
这对我有用
答案 2 :(得分:1)
查看错误日志:
my_list = ['100','300','1001','000','000']
my_list = [x.find('1') for x in my_list if '1' in x]
print(my_list)
>> [0, 0]
this link上存在相同类型的错误。
我想您可能需要执行checking for arm-apple-darwin-gcc... /Library/Developer/CommandLineTools/usr/bin/cc -arch armv7 -isysroot
checking whether the C compiler works... no
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'
,或者至少需要使用XCode xcode-select
。
答案 3 :(得分:1)
我运行了此命令,问题得到解决-
sudo xcode-select --switch /Applications/Xcode.app
答案 4 :(得分:1)
就我而言,XCode 路径包含一个空格:/Applications/Xcode\ 12.4.app
只有在将 XCode 版本重命名为 Xcode12.4.app
后运行 sudo xcode-select --switch /Applications/Xcode12.4.app
才能解决问题。