mac 报错:sh: vue-cli-service: command not found

报错如下图:sh: vue-cli-service: command not found
mac 报错:sh: vue-cli-service: command not found_第1张图片
解决方案:
终端执行命令

#清除缓冲
npm cache clean --force   
#重新安装
npm/cnpm  install

另网上的文章,大致说了3个解决方法

1、重新安装
将 文件夹node_modules 删除在执行 npm/cnpm install 进行重新安装

2、指定路径

./node_modules/.bin/vue-cli-service build

3、全局安装

npm install @vue/cli-service -g

4、环境变量NODE_ENV=production

多试几次,如果别的原因可以参考 https://stackoverflow.com/questions/51172064/command-not-found-with-vue-cli

你可能感兴趣的:(项目问题及报错)