使用vue-cli3创建项目的时候出错,ERROR command failed: npm install --loglevel error

使用 vue create demo 创建项目的时候出现如下报错:

错误提示:

ERROR command failed: npm install --loglevel error

使用vue-cli3创建项目的时候出错,ERROR command failed: npm install --loglevel error_第1张图片

一、出现这个错误,首先需要排除,node,npm的版本问题。

二、然后尝试清除npm缓存:

npm cache clean --force

三、关键方法:使用这个方法解决,GitHub上大拿们给的方法:

I am using “vue-cli 3.0.0-rc.1”, I solve the problems by setting the ~/.vuerc from “useTaobaoRegistry”: true, to false.

翻译:意思是,在我们使用vue-cli3.0时,通过设置json文件~/.vuerc里面的配置:“useTaobaoRegistry”: true; 这样就可解决问题。

解答1:"useTaobaoRegistry"原先是false,将其设置为true。

解答2:文件,~/.vuerc的位置:
使用vue-cli3创建项目的时候出错,ERROR command failed: npm install --loglevel error_第2张图片

你可能感兴趣的:(vue)