Cocoapods正确的安装方式

每次时间就了都会忘记,记录一下。

网上花里胡哨乱七八糟。按照这个只需要4步安装完成。

1.安装 Homebrew

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

最好选清华的源。中科大好像有点问题。

其中会出现错误,按照提示执行 run后面的命令:

2.执行brew install ruby

这里如果出现:Error: Command failed with exit 128: git

执行:unset HOMEBREW_BOTTLE_DOMAIN

然后重新:brew install ruby就好了

可能出现错误:fatal: not in a git directory

Error: Command failed with exit 128: git

解决方案:顺序执行

git config --global --add safe.directory /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core

git config --global --add safe.directory /usr/local/Homebrew/Library/Taps/homebrew/homebrew-services

git config --global --add safe.directory /usr/local/Homebrew/Library/Taps/homebrew/homebrew-caskgit

重新执行:brew install ruby

3.sudo gem update --system

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

如果在12遇到权限问题:

升级 cocoapods 报错

报错 You don't have write permissions for the /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/

用命令

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

安装或升级cocoapods 报错,You don't have write permissions for the /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/

解决办法:

用命令

brew install cocoapods

进行升级或安装

就此安装完毕,拒绝花里胡哨的乱七八糟的操作。

你可能感兴趣的:(Cocoapods正确的安装方式)