React Native安装 - 踩坑记

主要步骤参考:(https://reactnative.cn/docs/getting-started.html)

环境:Mac OS

请确保xcode-select已安装

主要的坑:

git配置

会造成某一个库拉不下来(具体忘记了,最好一开始就这样执行以下,反正没有其他影响)

git config --global http.postBuffer 1048576000
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999
卡在info Installing required CocoaPods dependencies
vi ios/Podfile

增加一行(在第一行添加)

pod 'boost-for-react-native', :git => 'https://gitee.com/damon-s/boost-for-react-native.git'

这一步的作用是,修改boost-for-react-native库为gitee源。

cd ios
pod install

完成之后,进入项目目录

react-native run-ios

请确保 8081端口未被占用

你可能感兴趣的:(React Native安装 - 踩坑记)