エラー: Ionic の使用中にモジュール '../lib/utils/unsupported.js' が見つかりません 質問する

エラー: Ionic の使用中にモジュール '../lib/utils/unsupported.js' が見つかりません 質問する

「Ionic start project name」を実行すると、常にこのエラー メッセージが表示されます。

エラーメッセージ

Running command - failed![ERROR] An error occurred while running npm install (exit code 1):

    module.js:471
        throw err;
        ^

    Error: Cannot find module '../lib/utils/unsupported.js'
        at Function.Module._resolveFilename (module.js:469:15)
        at Function.Module._load (module.js:417:25)
        at Module.require (module.js:497:17)
        at require (internal/module.js:20:19)
        at /usr/local/lib/node_modules/npm/bin/npm-cli.js:19:21
        at Object.<anonymous> (/usr/local/lib/node_modules/npm/bin/npm-cli.js:79:3)
        at Module._compile (module.js:570:32)
        at Object.Module._extensions..js (module.js:579:10)
        at Module.load (module.js:487:32)
        at tryModuleLoad (module.js:446:12)

ベストアンサー1

ノードを削除して再インストールしてみてください/usr/local/lib/node_modules/npm。これでうまくいくはずです。

MacOSの場合自家製:

sudo rm -rf /usr/local/lib/node_modules/npm
brew reinstall node

おすすめ記事