问题描述
使用npm install 安装依赖包时,报错 npm ERR! Cannot read properties of null (reading ‘pickAlgorithm’)
报错原因
1、翻译:npm ERR! Cannot read properties of null (reading ‘pickAlgorithm’)
npm错误!无法读取null的属性(读取“pickAlgorithm”)
2、可能原因
在安装node_modules过程中遇到了错误或者安装中断
解决方法
清楚缓存之后重新安装
1、清除npm缓存
npm cache clear --force
2、重新安装
npm install