npm ERR!Cannot read properties of null(reading 'pickAlgorithm')报错问题解决
作者:明思齐
这篇文章主要给大家介绍了关于npm ERR!Cannot read properties of null(reading 'pickAlgorithm')报错问题的解决方法,文中通过图文介绍的非常详细,需要的朋友可以参考下
1、问题描述:
在vue项目中,当我们在终端使用指令:npm install 下载 node_modules (节点_模块) 时出现报错的情况。
node_modules是安装node后用来存放用包管理工具下载安装的包的文件夹。比如webpack、gulp、grunt这些工具。
主要是这个原因:npm ERR! Cannot read properties of null (reading 'pickAlgorithm')
翻译:npm错误!无法读取null的属性(读取“pickAlgorithm”)
2、解决方案:
在终端运行命令:npm cache clear --force(npm缓存清除--强制)
若是上条命令不行,则 npm cache clean --force (npm缓存清理--强制)
一般来说运行完第一条命令,安装就成功了。但经过测试有些人的电脑上要使用缓存清理才行。
大家多多尝试。我自己用的 npm cache clear --force 效果很明显,一下就成功了。
然后再次执行命令进行安装:npm install(npm i)
再启动项目即可:npm run dev
总结
到此这篇关于npm ERR!Cannot read properties of null(reading 'pickAlgorithm')报错问题解决的文章就介绍到这了,更多相关npm ERR!Cannot read propertiesof null报错内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
您可能感兴趣的文章:
- npm ERR! code 128的错误问题解决方法
- npm ERR! code E404在vscode安装插件时报错的两种解决方案
- npm ERR! Node.js v20.11.0错误的解决
- 用npm install时报错node-sass npm ERR command failed问题的解决方法
- 启动myvue报错npm ERR! code ENOENT npm ERR! syscall open的解决办法
- 解决Node.js包管理器安装报错npm ERR! code 1的问题
- 前端报错npm ERR! cb() never called!问题解决办法
- npm ERR! code ELIFECYCLE错误及解决方法
- node中npm ERR! network ‘proxy‘ 配置问题解决