npm ERR [email protected]: Permission denied (publickey)

一、问题描述:

npm install 安装报错 npm ERR [email protected]: Permission denied (publickey)

npm ERR! code 128
npm ERR! An unknown git error occurred
npm ERR! command git --no-replace-objects ls-remote ssh://[email protected]/mvayngrib/changes-feed.git
npm ERR! [email protected]: Permission denied (publickey).
npm ERR! fatal: Could not read from remote repository.
npm ERR!
npm ERR! Please make sure you have the correct access rights
npm ERR! and the repository exists.

二、解决方案:

在终端中输入: 将 ssh 下载方式改成 https

git config --global url."https://".insteadOf ssh://git

你可能感兴趣的:(开发问题,#,Node开发问题,npm,git,github)