Mac 工具 安装
-
每个工具的安装、使用都可以到对应的官网或网上找到。
-
这里主要列出会用到的各种开发工具,以及安装设置方法。
-
如遇到安装报错,可以自行上网搜索解决,网上都有相应的教程。
-
请根据自己的需要选择安装,注意之间的依赖关系。
1. mac系统自带
-
ruby
gem
-
git
需要先安装xcode-select
2. Xcode
--命令行工具
xcode-select --install
安装成功后,便可以使用git
命令了
3.Git
全局 设置,具体参考 Git
使用
查看Git config
git config --global --list
设置Git postBuffer
git config --global http.postBuffer 1048576000
设置user.name
user.email
SSH KEY
之类的。
4. XCode
到App Store 安装 --iOS
开发需要安装
完成后打开并同意用户协议,或 执行 以下命令 同意协议。
sudo xcodebuild -license
5. Homebrew
--包管理工具
https://github.com/Homebrew/brew
- 如果有翻墙
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- 没翻墙,会报下面的错误信息
curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused
- 使用国内镜像安装:
/bin/bash -c "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install.sh)"
homebrew
会安装在 /usr/local
目录下
macOS11
后该目录是系统保护路径 没写入权限会报错误:
/usr/local/homebrew/.git: Permission denied
执行下面命令 设置权限后再安装:
sudo chown $(whoami):admin /usr/local && sudo chown -R $(whoami):admin /usr/local
/bin/bash -c "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install.sh)"
看到 ==> Installation successful!
就是成功了
homebrew 的安装可以参考这个文章:
https://zhuanlan.zhihu.com/p/90508170
6. node
、npm
https://github.com/npm/npm
https://nodejs.org/zh-cn/
brew install node
7. n
--node
版本管理工具
$ npm install -g n
安装使用可以看这个:
https://www.jianshu.com/p/e0eee0cc63ef
8. 替换 npm
源
npm config list //查看config
npm config set registry https://registry.npm.taobao.org
9. 安装 nrm
--npm
源地址管理
npm install -g nrm
10. yarn
--包管理器与npm
类似
npm install -g yarn
11. git-lfs
git 大文件下载
https://github.com/git-lfs/git-lfs
brew install git-lfs
12. rvm
--ruby
版本管理工具
http://www.rvm.io/rvm/upgrading
https://ruby-china.org/wiki/rvm-guide
curl -sSL https://get.rvm.io | bash -s stable --ruby
curl: (7) Failed connect to raw.githubusercontent.com:443; 拒绝连接
查看 域名对应解析ip
https://site.ip138.com/raw.Githubusercontent.com/
修改 hosts
vim /etc/hosts
151.101.108.133 raw.githubusercontent.com
无权限修改,开启权限
sudo chmod og+w /etc/hosts
再执行
curl -sSL https://get.rvm.io | bash -s stable --ruby
按提示安装成功后,注意看提示,按提示命令后便可以使用rvm
了。
source /Users/mk/.rvm/scripts/rvm
-
macOS11
后有GPG
公钥问题,参考这个链接
https://www.jianshu.com/p/25950f023966
13. iOS开发需 安装 cocoapods
查看源,更换源
gem sources -l
gem sources --remove https://rubygems.org/
gem sources --add https://gems.ruby-china.com/
安装cocoapads, ruby
版本需要 2.0以上
sudo gem install -n /usr/local/bin cocoapods
使用镜像 下载 Specs
- 我当前安装的pod 版本是 1.10.1
- 可以使用 pod repo list. 查看
- 存放的文件夹 应该是
cocoapods
,
git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git .cocoapods/repos/cocoapods
网络不稳定可能装一半就断了,多试几次,速度杠杠的。
网络环境好,改了hosts
的话,你可以尝试使用 GitHub的仓库
https://github.com/CocoaPods/Specs.git
会非常慢,可以睡一觉,运气好的话,醒来就下载完了。。。
网友评论