安装 ARM 版 Homebrew
ARM版Homebrew需要安装在/opt/homebrew路径下,早期的时候需要手动创建目录执行命令,目前使用最新脚本不需要手动操作。 直接执行: /bin/bash -c “$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install.sh)”
然后还需设置环境变量,具体操作步骤如下,一定要仔细阅读。
PS: 终端类型根据执行命令echo $SHELL显示的结果: /bin/bash => bash => .bash_profile /bin/zsh => zsh => .zprofile
从macOS Catalina(10.15.x) 版开始,Mac使用zsh作为默认Shell,使用.zprofile,所以对应命令: echo 'eval “
(
/
o
p
t
/
h
o
m
e
b
r
e
w
/
b
i
n
/
b
r
e
w
s
h
e
l
l
e
n
v
)
"
′
>
>
?
/
.
z
p
r
o
f
i
l
e
e
v
a
l
"
(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile eval "
(/opt/homebrew/bin/brewshellenv)"′>>?/.zprofileeval"(/opt/homebrew/bin/brew shellenv)”
如果是macOS Mojave 及更低版本,并且没有自己配置过zsh,使用.bash_profile: echo 'eval “
(
/
o
p
t
/
h
o
m
e
b
r
e
w
/
b
i
n
/
b
r
e
w
s
h
e
l
l
e
n
v
)
"
′
>
>
?
/
.
b
a
s
h
p
r
o
f
i
l
e
e
v
a
l
"
(/opt/homebrew/bin/brew shellenv)"' >> ~/.bash_profile eval "
(/opt/homebrew/bin/brewshellenv)"′>>?/.bashp?rofileeval"(/opt/homebrew/bin/brew shellenv)”
|