diff --git a/docs/guide/faq.md b/docs/guide/faq.md index 5ac839a..4229029 100644 --- a/docs/guide/faq.md +++ b/docs/guide/faq.md @@ -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 diff --git a/docs/guide/m1.md b/docs/guide/m1.md index d4177a1..81fcaa0 100644 --- a/docs/guide/m1.md +++ b/docs/guide/m1.md @@ -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) diff --git a/docs/guide/start.md b/docs/guide/start.md index faeddfc..563ee72 100644 --- a/docs/guide/start.md +++ b/docs/guide/start.md @@ -81,8 +81,8 @@ brew update 执行命令`echo $SHELL`,根据结果判断: -- `/bin/bash` => `bash` => `.bash_profile` - `/bin/zsh` => `zsh` => `.zprofile` +- `/bin/bash` => `bash` => `.bash_profile` 然后继续正式操作,以**中科大源**为例: