Xcodes.app 이용 xcode 설치 후 시뮬레이터 Error

Xcodes.app 이용 xcode 설치 후 시뮬레이터 Error
Photo by Zan Lazarevic / Unsplash

설명

Xcodes.app은 macOS에서 다양한 Xcode 버전을 간편하게 설치하고 관리할 수 있는 오픈 소스 툴로, 개발자들이 손쉽게 환경을 설정하도록 도와줍니다.

Xcodes - Manage multiple versions of Xcode
Download Xcode easily with a mouse click or a Command Line Interface

에러발생. 아래와 같은 메시지였다.

에러1

ERROR ) Unable to boot device because it cannot be located on disk

해결방법을 찾아보니 터미널에서 아래의 명령어를 입력하면 된다고 한다.

xcrun simctl erase all

에러2

xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcru

커맨드 라인 툴 설치하면 된다고 하였다.

xcode-select --install

에러3

이건 Xcodes를 이용 설치하면 어플에 버전명이 붙게 되는데 그것을 연결해주는 부분이 없어서 그런것이다. 따라서 버전명이 붙은 어플명을 연결해보자.

해결방법

터미널에서 아래의 명령어를 실행
xcode-select -p
결과값은 /Library/Developer/CommandLineTools

xcode 경로 변경하자
Finder -> 응용프로그램 -> xcode버전까지 확인하자

경로확인 방법 아래

다시 터미널에서 입력하자

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

경로 다시 확인

End