본문 바로가기
반응형

Development Solutions/iOS & OS X18

[ios][flutter] Warning: CocoaPods not installed. Skipping pod install [ios][flutter] Warning: CocoaPods not installed. Skipping pod install 개요 맥에서 플러터 앱을 ios버전으로 빌드할 때 아래와 같은 에러가 발생할 때가 있다. Warning: CocoaPods not installed. Skipping pod install 해결 방법 1. 이럴 땐 아래 명령어를 터미널에 입력하자. sudo gem install cocoapods 2. 위 명령어가 안될 때는 homebrew를 사용하자. (아래 명령어 실행) brew install cocoapods 2023. 1. 14.
맥북에서 Homebrew 설치하는 방법 맥북에서 Homebrew 설치하는 방법 터미널을 열고 아래 순서대로 명령어를 입력하면 된다. 간단하다! 1. /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 2. echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/사용자계정/.zprofile 3. eval "$(/opt/homebrew/bin/brew shellenv)" 4. 이제 다 됐다! 아래 명령어까지만 실행이 잘 된다면 설치 완료!! brew --version 2023. 1. 14.
How to check target os version of dylib library file on Mac OS (Mac OS에서 dylib 라이브러리 파일의 타겟 os 버전 확인하는 방법) How to check target os version of dylib library file on Mac OS (Mac OS에서 dylib 라이브러리 파일의 타겟 os 버전 확인하는 방법) 빌드한 라이브러리의 타겟 OS 버전을 확인이 필요할 때가 있다. 그럴 때는 otool 명령어에 간단한 옵션을 줘서 확인할 수 있다. 터미널을 열고 아래와 같이 커맨드를 내려보자! (Sometimes it is necessary to check the target OS version of the built library. In such a case, you can check by giving a simple option to the otool command. Open a terminal and run the comma.. 2022. 10. 4.
How to set Mac OS version when building library (라이브러리 빌드할 때 Mac OS버전 설정 방법) How to set Mac OS version when building library (라이브러리 빌드할 때 Mac OS버전 설정 방법) 맥에서 라이브러리를 빌드할 때, 특정 타겟 버전으로 빌드해야할 때가 있다. 예를 들어, 11.2 버전으로 라이브러리를 빌드해야하는데 내가 사용하는 맥의 OS버전이 12.x일 수 가 있다. 이럴 때는 아래 명령어를 사용한 뒤에 라이브러리를 빌드하면 된다. (When building libraries on a Mac, there are times when you need to build to a specific target version. For example, I need to build the library with version 11.2, but the OS vers.. 2022. 10. 4.
반응형