即使安装了正确的版本,也会出现React Native Ruby版本错误

s5a0g9ez  于 2022-11-30  发布在  React
关注(0)|答案(1)|浏览(326)
  • 我正在尝试使用npx创建一个新的React原生项目。由于Ruby版本的原因,整个npx过程失败。请查看所附的图像以了解更多详细信息。
  • Ruby版本已经用rbenv更新过了。你可以在附件的图片中看到Ruby版本。
  • 我还在.bash_profile和.zshrc文件中添加了必要的代码。多次重新启动终端和系统,但错误是相同的。

我不知道我做错了什么。

uelo1irk

uelo1irk1#

首先使用rbenv进行ruby设置。我建议在ruby设置完成后重新启动系统。请从here获得帮助。
然后按照以下步骤创建react原生项目。

1. npx react-native init testproject --skip-install

2. cd testproject

3. yarn install

4. cd ios

5. bundle install (For Intel Chip)
   arch -arm64 bundle install (For M1 Chip)

6. bundle exec pod install (For Intel Chip)
   arch -arm64 bundle exec pod install (For M1 Chip)

相关问题