gitでプロジェクトをクローンしましたが、プロジェクトはionic 2で作成されましたが、node_modulesフォルダを再作成するコマンドを実行するとこのエラーが発生します。Npmエラー - 一致するバージョンが見つかりませんでした
npm install
npm WARN deprecated [email protected]: Please update to the latest object-keys
npm ERR! code ETARGET
npm ERR! notarget No matching version found for [email protected]^3.5.0
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.
npm ERR! notarget
npm ERR! notarget It was specified as a dependency of 'ionic-hello-world'
npm ERR! notarget
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/wihermes/.npm/_logs/2017-06-02T13_58_47_295Z-debug.log
注:すでにnpmを更新しています。
誰でも修正方法を知っていますか?
同じ問題をパッケージlock.jsonファイルを削除してくださいNPMがインストール-gイオン@ latest' '後:今、あなたはmanually install the package via the tarball URL of the required release缶用
.0 ... npmは "一致するバージョンが見つかりません"という文句を言いますが、はっきりとインストールされています。 ''^3.0.0 'をターゲットとするように 'package.json'を変更して、それを望みどおりにインストールさせました。それは明らかに機能しましたが、それは3.10.3のみをインストールしました。なぜ違いはないのか分かりません。 – mc01