본문 바로가기

error records

[React Native] xcrun: error: SDK "iphoneos" cannot be located unable to lookup item 'Path' in SDK 'iphoneos' Failed to install CocoaPods dependencies for iOS project, which is required by this template.

반응형

React Native 를 TypeScript를 사용하여 실행하기 위해 처음 명령어를 입력 후에 

$ npx react-native init LuckIsComing --template react-native-template-typescript

 

Failed to install CocoaPods dependencies for iOS project, which is required by this template.

 

에러가 나왔다. 에러 설명에 나온대로 

$ cd ./[프로젝트명]/ios && pod install

해당 ios에 들어가 pod를 수기 설치하니 또 에러가 나왔다. 

 

xcrun: error: SDK "iphoneos" cannot be located unable to lookup item 'Path' in SDK 'iphoneos'

patching file config.sub
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for arm-apple-darwin-strip... no
checking for strip... strip
checking for a thread-safe mkdir -p... ./install-sh -c -d
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk

 

 

xcode가 없어서 생긴 오류같다. 

 

해결법 : 

1. app store에서 xcode를 설치한다. 

2. 아래 명령어를 입력한다. 

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

3. 다시 ios가 있던 곳으로 이동해서 다시 pod install 

$ pod install

 

반응형