이안의 평일코딩

[오류해결] npm ERR! Cannot read properties of null (reading 'pickAlgorithm') 본문

Error

[오류해결] npm ERR! Cannot read properties of null (reading 'pickAlgorithm')

이안92 2023. 1. 4. 15:56
반응형

새로운 프로젝트의 repo를 npm install로 설치하는데 이와 같은 에러가 떴다.

 

 해결방안

0. node-modules 폴더가 있다면 삭제. (없으면 다음 단계로 바로 넘어가도 된다)

1. 터미널에 아래와 같이 입력. 

npm cache clear --force

2. 다시 설치해주면 에러없이 설치가 완료된다.

npm install

완료! ✨

반응형
Comments