react native 环境搭建遇到问题

关于pod install 慢的要死的问题 解决方法记录
 
 
开始时显示ruby有问题,卸载cocoapods重装的
 
然后启动不起来,到ios目录下执行 pod install
 
然后太慢尝试设置了域名ip
/etc/hosts
151.101.1.194 github.global.ssl.fastly.net
140.82.113.3 github.com

然后又配置了本地代理
git config --global http.proxy socks5://127.0.0.1:7890
git config --global http.https://github.com.proxy socks5://127.0.0.1:7890
不好用的话用下面的方法取消设置
git config --global --unset http.proxy
git config --global --unset http.https://github.com.proxy
然后报HTTP2错误 忘了怎么改的反正设置了默认HTTP1.1
 
然后又是报错,不知道为啥,可能是内存设置太小了,或者下载时间太长了,然后又设置了下面的
git config --global http.postBuffer 1048576000
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999
 
然后还是贼慢把代理也开了全局模式
 
然后试了好多次突然有一下速度飞快就装完了。。。。
 
 
 
配置安卓
 
起不来,安装虚拟机https://developer.android.com/studio/run/managing-avds?hl=zh-cn
 
还是起不来 Java 版本不对,
 
运行
brew tap homebrew/cask-versions
brew install --cask zulu11
 
在/Library/Java/JavaVirtualMachines存在两个版本 jdk1.8.0_231.jdk 和 zulu-11.jdk
 
在环境变量吧1.8改成11 vim ~/.zshrc
 
还是报错,按照这个试了下可以了
 
https://stackoverflow.com/questions/56891033/facing-issue-failed-to-install-the-app-make-sure-you-have-the-android-develop
 
 
posted @ 2023-03-08 17:24  我不吃饼干呀  阅读(57)  评论(0编辑  收藏  举报