Closed1

Cannot read properties of null (reading 'pickAlgorithm')の対処法

s_w_highs_w_high

発生事象

以下のように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にクローズされました