Cannot read properties of null (reading 'pickAlgorithm') error solution

question

After pulling the project locally today, the following error occurred when installing dependencies:
Cannot read properties of null (reading 'pickAlgorithm')

Solution

To clear the cache:

npm cache clear --force

After clearing the cache, execute npm install to install dependencies

Guess you like

Origin blog.csdn.net/jiangjunyuan168/article/details/126630351