일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- git
- MYSQL
- 애플
- fido
- WebAuthn
- 2FA
- Nodejs
- OTP
- MSYS2
- 안드로이드
- Xcode
- SSH
- SSL
- 앱리소스
- FIDO2
- 앱스토어
- Android
- MFA
- apple
- OSX
- appres
- otpkey
- SWIFT
- 인증
- kmip
- 앨범북
- SwiftUI
- openssl
- css
- albumbook
Archives
- Today
- Total
인디노트
xcode-select --install 에러 해결책 본문
xcode-select --install 를 수행하면 xcode-select: error: command line tools are already installed, use "Software Update" in System Settings to install updates 메시지가 표시되는 경우가 있다.
다음을 수행해 본다.
xcode-select --print-path
출력이 이런식으로 나올 수 있다.
/Library/Developer/CommandLineTools
실제 이 폴더에 가보면 xcode 가 설치된 곳이 아니다. 아마도 이전 버전의 설정의 잔재....
다음명령으로 올바르게 다시 설정하자.
sudo xcode-select --switch /Applications/Xcode.app
이제 다음과 같이 올바른 패스가 설정되어 make 를 수행할 수 있다.
% xcode-select --print-path
/Applications/Xcode.app/Contents/Developer
반응형
'개발 플랫폼 및 언어' 카테고리의 다른 글
OS X 설치 이미지 변경 등 (0) | 2023.03.23 |
---|---|
안드로이드 알림 설명 잘된곳 링크 (0) | 2022.12.11 |
OS X 에서 HTTPS 사이트의 접속 테스트 (1) | 2022.12.09 |
OS X 에서 Let’s Encrypt 인증서 받기 (0) | 2022.12.09 |
애플 개발자 등록하기 위해 DUNS 번호 받으려면 여기로 직접 들어가자 (1) | 2022.10.25 |
Comments