首先安装Homebrew
什么是Homebrew呢?Homebrew is the easiest and most flexible way to install the UNIX tools Apple didn’t include with OS X. 官方的解释非常明了,Homebrew是一个包管理器,用于在Mac上安装一些OS X没有的UNIX工具(比如著名的wget),能在Mac中方便的安装软件或者卸载软件,可以说Homebrew就是mac下的apt–get、yum神器。
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
安装node
brew install node
好像是可以指定版本的 (这样:brew install node@14.17.5)你自己试试。
由于这样安装太慢,我等不了,我的node实际是 下载pkg ,然后运行安装的,下载地址:
https://nodejs.org/download/release/v14.17.5/
安装Watchman
brew install watchman
安装Cocoapods
brew install cocoapods
实际我没有用这个方法安装cocoapods,我是使用gem安装的
gem sources -l
gem source -r https://rubygems.org/
gem source -a https://gems.ruby–china.com/
git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git ~/.cocoapods/repos/trunk
安装react–native–cli
npm install react-native-cli -g
发现安装目录没有权限,然后我chmod -R 777 /dir给目录授权可写权限后安装react-native–cli成功了
但是我在 init react native项目时候cocoapods出错了。
后来这么解决:
pod repo 换源
gem sources —add https://gems.ruby–china.com/ –remove https://rubygems.org/
git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git master
这样正常安装了,但是碰到“Installing glog (0.3.5) 安装报错”
sudo xcode-select --switch /Applications/Xcode.app
cd ios && pod install
npm run ios,就开始启动模拟器,开始编译自动安装了。
原文地址:https://blog.csdn.net/qq996150938/article/details/123951915
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_16385.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!