在Mac上装好node后,打算在vscode使用npm install来安装依赖
结果vscode终端却提示 zsh: command not found
找到以下方法
1、在~目录下创建.zshrc文件
2、编辑source ~/.bash_profile 至 .zshrc 文件中
3、source ~/.zshrc
cd ~
touch .zshrc
echo 'source ~/.bash_profile' > .zshrc
source ~/.zshrc
即可解决
在Mac上装好node后,打算在vscode使用npm install来安装依赖
结果vscode终端却提示 zsh: command not found
找到以下方法
1、在~目录下创建.zshrc文件
2、编辑source ~/.bash_profile 至 .zshrc 文件中
3、source ~/.zshrc
cd ~
touch .zshrc
echo 'source ~/.bash_profile' > .zshrc
source ~/.zshrc
即可解决