728x90
개요
react-native 설치 후 run-ios 명령어를 이용해 앱을 실행하려 하는 경우 다음과 같은 에러를 만날 수 있다.
1 2 3 4 5 6 7 | Found Xcode project TestProject.xcodeproj xcrun: error: unable to find utility "instruments", not a developer tool or in PATH Command failed: xcrun instruments -s xcrun: error: unable to find utility "instruments", not a developer tool or in PATH | cs |
처리 방법
1. Xcode의 설정 변경
기본적으로 Xcode를 설치하면 Command-Line Tools가 자동으로 설치되는 데 Xcode 설정에서 사용할 Command-Line Tools 이 설정되어 있지 않기 떄문에 간단히 설정만 변경해 주면 된다.
아래 이미지처럼 Command Line Tools 를 설정해주고 Xcode를 종료한 뒤 다시 run-ios 명령어를 입력하면 정상 동작된다.
2. Xcode가 없는 환경
Xcode가 설치되어 있지 않은 경우라면 Command-Line Tools 만 별도로 설치 가능하다.
터미널에 아래 명령어를 입력해 설치 할 수 있다.
1 | $ xcode-select --install | cs |
만약 다음과 같은 메시지가 출력되면 이미 설치되어있는 것이니 1의 Xcode 설정을 변경해 주면 된다.
강윤구 / 대표
Yungu Kang / CEO
728x90
'React Native' 카테고리의 다른 글
[React Native] Context(Provider) 사용법 (0) | 2022.08.19 |
---|---|
[Firebase] 비동기 함수 내의 반복문에서 동기 처리하기 (0) | 2022.08.11 |
(0 , (_wordwrap || _load_wordwrap(…)).default)(…)(…).trimStart is not a function on expo init - 에러 (0) | 2019.03.06 |
React Native Navigation을 이용해 페이지 전환하기 (0) | 2019.03.03 |
이벤트 다루기 (0) | 2019.03.02 |