npm 错误代码 128

问题描述

npm install 下载 vue-element-admin报错如下:

npm ERR! code 128
npm ERR! An unknown git error occurred
npm ERR! command git --no-replace-objects ls-remote ssh://[email protected]/nhn/raphael.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.

解决方式

  1. 执行命令:
ssh-keygen -t rsa -C "你的邮箱"

输入上述命令后一直按回车,会在 C:\Users\用户名\.ssh 下生成一个id_rsa.pub文件

  1. id_rsa.pub文件内容加入到github网站的SSH keys中
    npm 错误代码 128_第1张图片
  2. 修改git配置
git config --global url."https://".insteadOf git://

然后重新npm install就行

你可能感兴趣的:(工具使用中遇到的一些问题,npm,git,github)