mac에서 안드로이드 미러링 - scrcpy 1. brew 설치 2. scrcpy, android-platform-tools 설치터미널 입력brew install scrcpybrew install android-platform-tools 3. 안드로이드 폰에서 'USB 디버깅' 활성화설정 > 개발자 옵션 > USB 디버깅 ON 3. Mac에 안드로이드 폰 연결USB 디버깅을 허용하시겠습니까? > 허용 4. 체크터미널 입력adb devices5. 미러링 실행터미널 입력scrcpy iOS/Etc 2024.11.18
Homebrew 설치 후 brew 명령어가 먹지 않을때 echo 'export PATH=/opt/homebrew/bin:$PATH' >> ~/.zshrc source ~/.zshrc iOS/Etc 2024.01.26
nodebrew로 node 버전설치 brew로 설치된 node 삭제 brew search node 1. 위 명령어를 입력 후 체크되어 있는 모든 대상을 지운다. brew uninstall {target} 2. brew search node를 재 실행하여 체크되어 있는 대상이 있는지 재 확인 brew search node 모든 node 삭제 cd /usr/local/lib cd /use/local/include 1. 위 경로내 node 관련 파일 또는 폴더를 삭제, 아래 명령어 참조 sudo rm -rf node/* 2. 실행 sudo rm -rf /usr/local/bin/npm sudo rm -rf /usr/local/bin/node sudo rm -rf /usr/local/share/man/man1/node.1 sudo rm -rf /.. React Native : RN/Setting & Bug 2022.03.10
Carthage 설치하기 1. Homebrew 설치하기 참고 : brew.sh/index_ko Homebrew The Missing Package Manager for macOS (or Linux). brew.sh $ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 터미널에 붙여넣기 하세요. brew가 설치되어 있다면 update $ brew update 2. Cartahge 설치 $ brew install carthge iOS/Etc 2021.04.17