Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- 모던 자바스크립트 Deep Dive
- activeElement
- but requested an insecure XMLHttpRequest endpoint 'http://~~’. This request has been blocked; the content must be served over HTTPS.
- IT 직무 취업
- touchmove 이벤트
- 자바스크립트
- 자바스크립트 변수 호이스팅
- 자바스크립트 중첩함수
- 리액트 가상키보드
- active blur
- 리액트 쿼리
- K-SW SQUARE
- 모두의시간
- 퍼듀대학교
- 프론트엔드 웹
- 프론트엔드 개발 취업
- Kafka
- 자바스크립트 호이스팅
- net::R_SSL_PROTOCOL_ERROR
- 자바스
- refetchOnWindowFocus
- Purdue university
- React Query
- 웹아키텍처
- AWS 로드밸런서
- 로현 청춘의개발
- ios 크로스브라우징
- EC2 HTTPS로 연결
- 사파리 가상키보드
- SW개발 취업
Archives
- Today
- Total
개발 여행자
[M1 맥북]cocoapod 설치 오류 LoadError - dlopen... 본문
cocoapod 설치 오류 LoadError - dlopen...
1. 문제상황
회사에 처음 입사하고 다른 개발자분들과 개발환경을 맞추기 위해 nvm 버전을 낮췄는데
기존 터미널에서 시도했던 설치방법으로 하니 오류가 발생하였다.
sudo gem install cocoapods
/*
LoadError - dlopen(/Library/Ruby/Gems/2.6.0/gems/ffi-1.13.1/lib/ffi_c.bundle, 0x0009): missing compatible arch in /Library/Ruby/Gems/2.6.0/gems/ffi-1.13.1/lib/ffi_c.bundle - /Library/Ruby/Gems/2.6.0/gems/ffi-1.13.1/lib/ffi_c.bundle
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/Library/Ruby/Gems/2.6.0/gems/ffi-1.13.1/lib/ffi.rb:6:in `rescue in <top (required)>'
/Library/Ruby/Gems/2.6.0/gems/ffi-1.13.1/lib/ffi.rb:3:in `<top (required)>'..... (중략)
*/
2. 해결방법
- M1 맥북
// 해결방법 (M1 맥북)
sudo arch -x86_64 gem install ffi
arch -x86_64 pod install
// 해결방법 (Intel 맥북)
1. 유틸리티 폴더에서 터미널 응용 프로그램을 복제
2. "로제타로 열기" 옵션 선택
3. "sudo gem install cocoapods" 명령으로 Cocoapods를 설치
ffi 번들 문제를 해결하려면 "sudo gem install ffi" 입력
'ReactNative' 카테고리의 다른 글
| [React Native] Unexpected token '?' 에러 해결방법 (0) | 2022.09.14 |
|---|---|
| [오류해결] pod install 오류 해결 (No podspec found for `react-native-version-info` in `../node_modules/react-native-version-info) (0) | 2022.05.02 |
| [M1 맥북] nvm - clang error no such file or directory 'cxx=c++' 에러 (0) | 2022.03.08 |
| [ReactNative] React.FC의 장점과 단점 (0) | 2022.02.06 |
| [ReactNative] 리액트네이티브 상태관리 useState (0) | 2022.02.02 |