MAC bookPro出现zsh: command not found: xxx解决方法:
把 bash shell 中.bash_profile 全部环境变量加入zsh shell里就好
step1:
Term执行
open .zshrc
step2:
在弹出的编辑器最下面
加入
source ~/.bash_profile
或者
source .bash_profile
看哪个奏效,这一步就在zshrc执行时将 .bash_profile 全部环境变量加入zsh shell了
保存
step3:
terminal执行
source .zshrc 更新配置
如果到此你已经解决了问题,那恭喜你了,可题主我就没这么幸运,我在terminal执行source .zshrc时报找不到bash_profile,坑爹的有些mac就是没有bash_profile这个文件,需要手动新建,如果你也是这样请继续跟我操作
step:1
terminal执行
touch .bash_profile 创建.bash_profile
这时候就有了bash_profile这个文件,当然是没有内容的空文件,这里又需要你写入path,我接下来是这么操作的
step:2
创建global安装任务的目录
mkdir ~/.npm-global
step:3
配置npm全局下载时,下载到新的地址目录
npm config set prefix '~/.npm-global'
至此你再npm i xxx -g就会存储到npm-global的地址下了
step:4
open .bash_profile
在弹出的编辑器中增加配置
export PATH=~/.npm-global/bin:${PATH}
保存
step:5
terminal执行
source .bash_profile 更新配置
至此解决问题