Closed1
Cannot read properties of null (reading 'pickAlgorithm')の対処法
発生事象
以下のようにnpm install
実行時に以下のような`npm ERR! Cannot read properties of null (reading 'pickAlgorithm')のエラーが発生した。
$ npm install
npm ERR! Cannot read properties of null (reading 'pickAlgorithm')
npm ERR! A complete log of this run can be found in:
npm ERR! ・・・
対処法
npmの設定に以下の対応を挿入することで解決した。
$ npm -g config set registry https://registry.npmjs.org/
$ npm -g config set strict-ssl false
上記コマンド実行後、一度npm
のキャッシュを削除してから再度npm install
を実行することをお勧めする。
$ npm cache clear --force
$ npm install
このスクラップは2022/12/14にクローズされました