mirror of
https://gitee.com/ineo6/homebrew-install.git
synced 2025-04-05 19:41:45 +08:00
feat: 更新m1环境变量方案
This commit is contained in:
parent
bc5544782a
commit
4086dd9a8c
@ -58,36 +58,36 @@ Use '--' to separate paths from revisions, like this:
|
||||
|
||||
一般是环境变量无效,请使用`echo $SHELL`确认终端类型,参考上节。
|
||||
|
||||
如果是`m1`芯片`Mac`则可能是没有把`/opt/homebrew/bin`加入环境变量:
|
||||
`m1`芯片`Mac`电脑需要手动设置环境变量:
|
||||
|
||||
zsh
|
||||
|
||||
```shell
|
||||
echo export PATH=/opt/homebrew/bin:$PATH >> ~/.zprofile
|
||||
source ~/.zprofile
|
||||
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile
|
||||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||
```
|
||||
|
||||
bash
|
||||
|
||||
```shell
|
||||
echo export PATH=/opt/homebrew/bin:$PATH >> ~/.bash_profile
|
||||
source ~/.bash_profile
|
||||
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.bash_profile
|
||||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||
```
|
||||
|
||||
否则可能因为特殊情况需要把`/usr/local/bin`手动加入环境变量:
|
||||
非`m1`的话,可以尝试手动加入环境变量:
|
||||
|
||||
zsh
|
||||
|
||||
```shell
|
||||
echo export PATH=/usr/local/bin:$PATH >> ~/.zprofile
|
||||
source ~/.zprofile
|
||||
echo 'eval "$(/usr/local/bin/brew shellenv)"' >> ~/.zprofile
|
||||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||
```
|
||||
|
||||
bash
|
||||
|
||||
```shell
|
||||
echo export PATH=/usr/local/bin:$PATH >> ~/.bash_profile
|
||||
source ~/.bash_profile
|
||||
echo 'eval "$(/usr/local/bin/brew shellenv)"' >> ~/.bash_profile
|
||||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||
```
|
||||
|
||||
## SHA256 mismatch
|
||||
|
@ -25,30 +25,30 @@
|
||||
然后还需设置环境变量,在`~/.zprofile`或者`~/.bash_profile`文件末尾追加下面代码:
|
||||
|
||||
```shell
|
||||
export PATH=/opt/homebrew/bin:$PATH
|
||||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||
```
|
||||
|
||||
具体操作步骤如下,一定要仔细阅读。
|
||||
**具体操作步骤如下,一定要仔细阅读。**
|
||||
|
||||
PS: 终端类型根据执行命令`echo $SHELL`显示的结果:
|
||||
|
||||
- `/bin/bash` => `bash` => `.bash_profile`
|
||||
- `/bin/zsh` => `zsh` => `.zprofile`
|
||||
- `/bin/bash` => `bash` => `.bash_profile`
|
||||
|
||||
**如果遇到环境变量无效问题,建议回过头来查看终端类型,再做正确的设置。**
|
||||
|
||||
从`macOS Catalina`(10.15.x) 版开始,`Mac`使用`zsh`作为默认`Shell`,使用`.zprofile`,所以对应命令:
|
||||
|
||||
```shell
|
||||
echo export PATH=/opt/homebrew/bin:$PATH >> ~/.zprofile
|
||||
source ~/.zprofile
|
||||
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile
|
||||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||
```
|
||||
|
||||
如果是`macOS Mojave` 及更低版本,并且没有自己配置过`zsh`,使用`.bash_profile`:
|
||||
|
||||
```shell
|
||||
echo export PATH=/opt/homebrew/bin:$PATH >> ~/.bash_profile
|
||||
source ~/.bash_profile
|
||||
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.bash_profile
|
||||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||
```
|
||||
|
||||
扩展阅读:[在 Mac 上将 zsh 用作默认 Shell](https://support.apple.com/zh-cn/HT208050)
|
||||
|
@ -81,8 +81,8 @@ brew update
|
||||
|
||||
执行命令`echo $SHELL`,根据结果判断:
|
||||
|
||||
- `/bin/bash` => `bash` => `.bash_profile`
|
||||
- `/bin/zsh` => `zsh` => `.zprofile`
|
||||
- `/bin/bash` => `bash` => `.bash_profile`
|
||||
|
||||
然后继续正式操作,以**中科大源**为例:
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user