欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

安装vue-cli报错 -4058 的解决方法

程序员文章站 2022-07-06 20:31:48
本人在安装vue脚手架时报这样的错,我访问了漫山遍野还是没找到答案,有人叫我用cnpm安装,但是cnpm安装的vue有好多坑在里面: npm warn check...

本人在安装vue脚手架时报这样的错,我访问了漫山遍野还是没找到答案,有人叫我用cnpm安装,但是cnpm安装的vue有好多坑在里面:

npm warn checkpermissions missing write access to c:\users\liuyg\appdata\roaming\npm\node_modules\vue-cli\node_modules\cliui\node_modules\wordwrap
npm err! path c:\users\liuyg\appdata\roaming\npm\node_modules\vue-cli\node_modules\cliui\node_modules\wordwrap
npm err! code enoent
npm err! errno -4058
npm err! syscall access
npm err! enoent enoent: no such file or directory, access 'c:\users\liuyg\appdata\roaming\npm\node_modules\vue-cli\node_modules\cliui\node_modules\wordwrap'
npm err! enoent this is related to npm not being able to find a file.
npm err! enoent

npm err! a complete log of this run can be found in:
npm err!   c:\users\liuyg\appdata\roaming\npm-cache\_logs\2017-10-18t14_34_23_721z-debug.log

安装vue-cli报错 -4058 的解决方法

于是我在继续翻贴发红包,终于找到解决方案了,貌似是网络代理问题。

换一个npm安装源就好了,具体方法如下:

1.通过config命令

npm config set registry https://registry.npm.taobao.org

npm info underscore (如果上面配置正确这个命令会有字符串response)

安装vue-cli报错 -4058 的解决方法

2.命令行指定

npm --registry https://registry.npm.taobao.org info underscore

然后再安装就好了

安装vue-cli报错 -4058 的解决方法

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。