这篇文章会介绍我在 macOS 的终端里安装的命令和软件。
脚本式装机:
# 添加代理
export https_proxy=your_proxy_address
# 安装 brew,需要手动输入密码,按回车
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
# 添加环境变量
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/ypw/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
# 安装常用命令
brew install aria2 cmake curl pv htop nano nload nmap p7zip tree wget watch
# 安装 Oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# 安装 iTerm2
brew install --cask iterm2
# 安装一些必备软件
brew install --cask 1password baidunetdisk caffeine clash-for-windows dingtalk github google-chrome iina hex-fiend istat-menus karabiner-elements netron postman pycharm qbittorrent qq sublime-text macdown tinypng4mac typora visual-studio-code wechat wechatwork xquartz
# Clash 解决已损坏问题
sudo xattr -r -d com.apple.quarantine /Applications/Clash\ for\ Windows.app
# 安装Chrome
open https://www.google.cn/chrome/
# 安装搜狗输入法
open https://pinyin.sogou.com/mac/
# 安装 Python x86 (可选)
sudo softwareupdate --install-rosetta --agree-to-license
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
bash Miniconda3-latest-MacOSX-x86_64.sh -b
# 安装 Python arm64
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-MacOSX-arm64.sh
bash Miniconda3-latest-MacOSX-arm64.sh -b
# 安装 Python 环境
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
pip install jupyter jupyter_contrib_nbextensions numpy pandas scikit-learn matplotlib opencv-python pillow tqdm tensorboardx torch torchvision xlrd openpyxl openmim
mim install mmdet
安装 Homebrew 之前,建议先通过 App Store 安装 Xcode 并接受 「Xcode and Apple SDKs Agreement」,不然就需要在安装过程中接受协议。
Homebrew 是 macOS 上的一个包管理器,你可以使用 Homebrew 安装 Apple 没有预装但你需要的东西。
安装 Homebrew 只需要一行命令:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
在终端中运行以下两个命令,将 Homebrew 添加到你的环境变量 PATH 中:
(echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/lhy/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
这里的 lhy 是用户文件夹,所以不要直接复制这里的命令,Homebrew 安装完成后会提示你需要使用的命令。
通过 brew --version
测试 Homebrew 是否安装成功:
brew --version
使用 Homebrew 安装一个 wget 吧:
brew install wget
当你需要更新的时候,可以使用下面的命令完成:
brew update && brew upgrade && brew cleanup
这是一条终端命令,用于更新和升级 Homebrew,同时清理过期的包和缓存。具体解释如下:
brew update
:更新 Homebrew 的本地包信息,使其与远程仓库同步。
brew upgrade
:升级已安装的包至最新版本。
brew cleanup
:清理已安装的包中过期的版本和无用的缓存,释放磁盘空间。
这三个命令可以一起使用,以保持 Homebrew 的最新状态并清理不必要的文件。
如果你觉得使用 brew 安装和更新软件的时候非常慢,可以使用其他的镜像,如清华大学:
使用下面的命令可以加速 brew update
:
git -C "$(brew --repo)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask.git
brew update
设置下面的环境变量可以加速 brew install
:
export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles
终端软件安装以后,我们还需要安装一个好用的 shell 解释器,zsh 和 oh my zsh。
它比默认的 bash 有以下几个优点:
- 当你使用 tab 提示的时候,如果有多个匹配项,你可以用 tab 进行切换
- 当你想使用一个之前输入过的命令的时候,只需要输入首字母,然后按上方向键切换
在 macOS 下,首先需要安装 zsh,然后再安装 oh my zsh。
安装步骤如下:
完整命令如下:
# 安装 zsh
brew install zsh zsh-completions
# 安装 oh my zsh
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
最后需要输入一次密码,记得输入正确,否则下一次启动终端就不会使用 zsh。如果你不小心错过了,可以用下面的命令手动切换默认终端:
chsh -s /bin/zsh
检查 zsh 是否安装成功:
echo $SHELL
如果输出结果为 /bin/zsh
,则表示你正在使用 zsh。
使用 homebrew-cask 可以轻松安装各种 macOS 软件,下面的命令可以安装一些必备软件:
brew install --cask iTerm2
brew install --cask Sublime-Text MacDown Typora Hex-Fiend
brew install --cask Google-Chrome
brew install --cask PyCharm miniconda GitHub Postman
brew install --cask Netron Karabiner-Elements The-Unarchiver Caffeine
brew install --cask WeChat QQ IINA BaiduNetdisk
brew install git htop nload wget
git 是代码管理工具。
htop 是一个系统监控与进程管理软件, 如:
<script id="asciicast-eWBQp36f4KWmhMX1FAoQ8SQl4" src="https://asciinema.org/a/eWBQp36f4KWmhMX1FAoQ8SQl4.js" async></script>nload 是一个网速监控命令,你可以用它查看比如打包 docker 的时候的网速如何,是否在下载依赖的软件包。
下面是运行 https://www.speedtest.net 的时候监控 nload 的过程:
<script id="asciicast-o2IpTuWi93dRo2E1SHP2rILKZ" src="https://asciinema.org/a/o2IpTuWi93dRo2E1SHP2rILKZ.js" async></script>很方便的命令行下载工具,比如:
wget https://repo.anaconda.com/archive/Anaconda3-2019.03-MacOSX-x86_64.sh
bash Anaconda3-2019.03-MacOSX-x86_64.sh
通过上面的命令,你可以下载 Anaconda 安装包,然后安装 Anaconda。
通过 -c
参数,可以接着上次的进度继续下载。
如:
<script id="asciicast-5iHU0tVcLZxUGUubbPG7U8AoY" src="https://asciinema.org/a/5iHU0tVcLZxUGUubbPG7U8AoY.js" async></script>