npm错误!尝试安装package.json时,gitdep准备失败
我正在尝试使用命令安装 package.json 文件npm install,但出现以下错误。
npm ERR! git dep preparation failed
npm ERR! command C:Program Filesnodejsnode.exe C:UsersDHRUVAppDataRoamingnpmnode_modulesnpmbinnpm-cli.js install --force --cache=C:UsersDHRUVAppDataLocalnpm-cache --prefer-offline=false --prefer-online=false --offline=false --no-progress --no-save --no-audit
npm ERR! npm WARN using --force Recommended protections disabled.
npm ERR! npm ERR! code 128
npm ERR! npm ERR! command failed
npm ERR! npm ERR! command git ls-remote ssh://git@github.com/gulpjs/gulp.git
npm ERR! npm ERR! Host key verification failed.
npm ERR! npm ERR! fatal: Could not read from remote repository.
npm ERR! npm ERR!
npm ERR! npm ERR! Please make sure you have the correct access rights
npm ERR! npm ERR! and the repository exists.
npm ERR!
npm ERR! git dep preparation failed
npm ERR! command C:Program Filesnodejsnode.exe C:UsersDHRUVAppDataRoamingnpmnode_modulesnpmbinnpm-cli.js install --force --cache=C:UsersDHRUVAppDataLocalnpm-cache --prefer-offline=false --prefer-online=false --offline=false --no-progress --no-save --no-audit
npm ERR! npm WARN using --force Recommended protections disabled.
npm ERR! npm ERR! code 128
npm ERR! npm ERR! command failed
npm ERR! npm ERR! command git ls-remote ssh://git@github.com/gulpjs/gulp.git
npm ERR! npm ERR! Host key verification failed.
npm ERR! npm ERR! fatal: Could not read from remote repository.
npm ERR! npm ERR!
npm ERR! npm ERR! Please make sure you have the correct access rights
npm ERR! npm ERR! and the repository exists.
npm ERR!
我已经安装了 Git 和节点。
包.json:
回答
尝试这个
第1步:
$ npm cache clean --force
第2步:
删除node_modules的$ rm -rf node_modules同时删除package-lock.json
第 3 步:
更新npm到最新的稳定版本
npm install -g npm@7.6.0
第 3 步:
npm install
重新开始,
$ npm start
- this does not work for me