长期更新
Homebrew
使用国内的源: 引用地址
/bin/zsh -c “$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)”
常用的几个brew命令
本地软件库列表:brew ls
查找软件:brew search google(其中google替换为要查找的关键字)
查看brew版本:brew -v
更新brew版本:brew update
安装cask软件:brew install –cask firefox 把firefox换成你要安装的
通过rvm来安装Ruby
安装 rvm
curl -L get.rvm.io | bash -s stable
使用
rvm -v 查看版本
列出ruby可安装的版本信息
rvm list known
安装ruby
rvm install 3.0.0
设为默认
rvm use 3.0.0 –default
更换源
gem sources –remove https://rubygems.org/
gem sources –add https://gems.ruby-china.com/
查看ruby的源
gem sources -l
CocoaPods
sudo gem install -n /usr/local/bin cocoapods
安装本地库
git clone https://github.com/CocoaPods/Specs.git ~/.cocoapods/repos/trunk
测试
pod search Alamofire
国内源
$ cd ~/.cocoapods/repos
$ pod repo remove master
$ git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git master
替换之前的github
source ‘https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git’
文章知识点与官方知识档案匹配,可进一步学习相关知识Git技能树首页概览2891 人正在系统学习中
声明:本站部分文章及图片源自用户投稿,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!