美文网首页
iOS 项目环境配置

iOS 项目环境配置

作者: 木头炫 | 来源:发表于2022-05-23 09:13 被阅读0次

iOS 项目环境配置

一下载各种软件

1.下载Xcode 

当系统中有多个版本的 Xcode 时,可以使用‘xcode-select’工具选择默认版本 

例:

sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer

2.下载破解版Charles https://www.zzzmode.com/mytools/charles/

3.下载sourceTree

二,解决github慢的方法

通过https://www.ipaddress.com/

查询raw.githubusercontent.com的真实IP

和github.com的真实IP

raw.githubusercontent.com一般可以查到4个ip都加入到hosts文件

修改/etc/hosts文件 

添加

 真实IP  raw.githubusercontent.com

 真实IP  github.com

二,安装各种环境

切换ruby-china源

gem source -l 查看当前源

切换ruby-china源

gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org

安装homebrew

/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

选择清华大学源

brew install autoconf

brew install automake

brew link --overwrite autoconf

brew link --overwrite automake

安装CocoaPods的顺序:

Xcode->homebrew->RVM->Ruby->CocoaPods

1.cocoapods

sudo gem install -n /usr/local/bin cocoapods

1.1 安装Ruby环境

1.1.1查看当前Ruby版本 ruby -v

1.1.2升级Ruby环境,首先要安装rvm

curl -L get.rvm.io | bash -s stable 

source ~/.bashrc

source ~/.bash_profile

如果在终端收到:thank you 🙏 message说明安装成功

退出终端然后重启终端

1.1.3查看rvm版本

rvm -v 

1.1.4列出ruby可安装的版本信息

rvm list known

然后 载入 RVM 环境

$ source ~/.rvm/scripts/rvm

1.3 修改 RVM 下载 Ruby 的源 到 Ruby China 的镜像 !

记住这个镜像 是 ruby-china.com 不是其他的

$ echo "ruby_url=https://cache.ruby-china.com/pub/ruby" > ~/.rvm/user/db

1.3.1 检查一下是否安装正确

$ rvm -v

1.1.5安装一个ruby版本(这里我选择的是3.0.0版本,当然你也可以选择其他的)

rvm install 3.0.0

1.1.6、设置为默认版本

rvm use 3.0.0 --default

安装cocoapods

sudo gem install -n /usr/local/bin cocoapod

相关文章

网友评论

      本文标题:iOS 项目环境配置

      本文链接:https://www.haomeiwen.com/subject/atcrprtx.html