从git拉取项目后启动vue报错Local package.json exists, but node_modules missing

从git拉取项目后启动vue报错Local package.json exists, but node_modules missing_第1张图片

最近开始在看vue的项目,git上下载了一个公司已有的项目报错,解决方式如上图。

前提是你环境都已经配置好。没有装过的转vue环境搭建https://blog.csdn.net/qq_24349695/article/details/90514900

1 首先安装node.js,官网地址:https://nodejs.org/zh-cn/download/

2 使用npm淘宝镜像,避免npm下载速度过慢的问题   :npm install -g cnpm --registry=https://registry.npm.taobao.org  

 3 使用cnpm 下载vue-cli        cnpm install -g vue-cli 

装完这三个之后再进行 cnpm install
 

你可能感兴趣的:(Vue)