homebrew,gem,cocoapod 换源,以及安装依赖

安装homebrew

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

再按照成功提示配置环境变量

ruby

更新ruby到最新

bash 复制代码
brew install ruby

如果安装了会自动升级

安装完成后根据提示配置环境变量

再执行命令使其生效

bash 复制代码
source ~/.zshrc

安装cocoapods

bash 复制代码
sudo gem install cocoapods

完成后执行

bash 复制代码
pod setup

cocoapods换源

bash 复制代码
$ cd ~/.cocoapods/repos 
$ pod repo remove master
$ git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git master

然后在项目Podfile中第一行

bash 复制代码
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'

cocoapods安装NMSSH

在podfile中,添加依赖以及版本

bash 复制代码
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
platform :macos, '11.0'

target 'app' do
  use_frameworks!

  # 添加 NMSSH 依赖
  pod 'NMSSH', '~> 2.3.1'
end

再执行

bash 复制代码
pod install

最后通过 .xcworkspac 打开项目

相关推荐
o(╥﹏╥)2 小时前
github如何给本机绑定 ssh密钥(MACOS)
运维·gitee·ssh·github
哭哭啼3 小时前
Linux实现两台服务器之间ssh连接
linux·运维·ssh
L~river3 小时前
解决vscode ssh远程连接服务器一直卡在下载 vscode server问题
服务器·vscode·ssh
捞鱼哲学家21 小时前
ubuntu解决ssh连接:Permission denied (publickey)
ssh
opentogether1 天前
Swift 的动态性
开发语言·ssh·swift
Kali_071 天前
OnOn-WebSsh (昂~昂~轻量级WebSSH) 可实现 网页 中的 ssh 客户端操作,支持多用户多线程操作 ssh 持久化
java·运维·spring boot·ssh
铁皮盒子1 天前
启用WSL后,使用ssh通道连接ubuntu
运维·ubuntu·ssh·wsl
劉三岁1 天前
gitlab window如何设置ssh
运维·ssh·gitlab
马甲是掉不了一点的<.<2 天前
本地电脑生成SSH公钥私钥对,用于SSH远程连接服务器
linux·服务器·ssh