问题
Mac
上装好node
后,使用npm install
安装依赖时,终端却提示zsh: command not found
解决方案
【1】在~
目录下创建.zshrc
文件;
【2】编辑source ~/.bash_profile
至.zshrc
文件中;
【3】source ~/.zshrc
;
java
cd ~
touch .zshrc
echo 'source ~/.base_profile' > .zshrc
source ~/.zshrc