解决npm ERR! Cannot read properties of null (reading ‘pickAlgorithm‘)报错问题

在vue项目中,使用npm i 命令安装node modules时,出现报错:
在这里插入图片描述
最关键的应该是这一句:

npm ERR! Cannot read properties of null (reading 'pickAlgorithm')

解决方法:
在终端中运行命令:
npm cache clear --force

然后重新运行 npm i 命令,再次安装
安装完成,没有出现报错
npm run serve 运行项目,项目可以正常启动了。
解决npm ERR! Cannot read properties of null (reading ‘pickAlgorithm‘)报错问题_第1张图片

你可能感兴趣的:(npm,vue.js,前端)