React Native

[React Native] 프로젝트 설치 오류 Your Ruby version is x.x.x, but your Gemfile specified x.x.x

start1a 2023. 1. 29. 15:53

문제

Mac에서 React Native 프로젝트 생성 도중 오류 발생

해결

버전 확인

ruby -v

버전이 안 맞을 경우 설치

rvm install "ruby-2.7.5"
rvm use ruby-2.7.5 --default

 

https://stackoverflow.com/a/74702514

 

Your Ruby version is 2.6.8, but your Gemfile specified 2.7.5

I have installed node@16(v16.18.0) in macOS and npm version: 8.19.2. Operating System macOS(Monterey) version: 12.6 Xcode Verion: 14.0.1 Followed some instructions to setup react-native environme...

stackoverflow.com