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
- 프로그래머스 n의 배수 고르기
- 프로그래머스 주사위 게임1
- n번째 원소까지
- 프로그래머스 암호 해독
- 프로그래머스 n번째 원소까지
- 객체지향
- 프로그래머스 문자열 붙여서 출력하기
- 연산자
- 스파르타 코딩클럽 내일배움캠프
- array
- 스파르타코딩캠프
- 문자열 붙여서 출력하기
- 주사위 게임1
- 조건에 맞게 수열 변경하기 3
- 스페인어
- 문자열 정렬하기 (1)
- 프로그래머스 문자열 정렬하기 (1)
- 프로그래머스 자동커밋
- cocoapods 설치 오류
- Break
- swift
- continue
- ruby설치
- 프로그래머스
- Error installing cocoapods
- 배열 만들기1
- 프로그래머스 배열 만들기1
- 프로그래머스 최댓값 만들기(2)
- Til
- 프로그래머스 조건에 맞게 수열 변경하기 3
Archives
- Today
- Total
dev._.note
[Error] Error installing cocoapods 본문
Error installing cocoapods
터미널에서 cocoapods을 설치하는데 설치가 안되는 문제
error 문구
ERROR: Error installing cocoapods:
The last version of drb (>= 0) to support your Ruby & RubyGems was 2.0.5. Try installing it with `gem install drb -v 2.0.5` and then running the current command again
drb requires Ruby version >= 2.7.0. The current ruby version is 2.6.10.210.
ruby 버젼이 낮아서 생긴 문제
ruby 최신버전으로 설치
brew install rbenv
ruby 버전 확인
rbenv install -l
-- 결과
3.0.6
3.1.4
3.2.2
jruby-9.4.5.0
mruby-3.2.0
picoruby-3.0.0
truffleruby-23.1.1
truffleruby+graalvm-23.1.1
ruby 최신 버전으로 설치 (오늘자 최신버전 3.2.2)
rbenv install 3.2.2
ruby -v
ruby 적용 버전 확인
rbenv versions
* system
3.1.1
3.2.2
ruby 적용 버전 변경
rbenv global 3.2.2
rbenv versions
system
3.1.1
* 3.2.2 (set by /Users/mr/.rbenv/version)
+ 추가로 Path설정이 안되서 오류가 난경우
error 문구
ERROR: While executing gem ... (Gem::FilePermissionError)
You don’t have write permissions for the /Library/Ruby/Gems/2.6.0 directory.
Path 지정
echo '# rbenv' >> ~/.bash_profile
echo 'export PATH=~/.rbenv/bin:$PATH' >> ~/.bash_profile
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
bash_profile 적용
source ~/.bash_profile
gem 설치
gem install bundler
'Dev > ERROR' 카테고리의 다른 글
[Error] Error Domain=NSURLErrorDomain Code=-1022 (0) | 2024.02.19 |
---|---|
[Error] NSInternalInconsistencyException (0) | 2024.02.14 |
[Error] (Xcode): Sandbox: rsync(13885) deny(1) (0) | 2024.01.31 |
[Git] Xcode pbxproj merge conflict 문제 해결 방법 (0) | 2023.12.29 |
[Error] Expressions are not allowed at the top level (1) | 2023.12.02 |