问题描述

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://git@github.com/nhn/raphael.git
npm ERR! git@github.com: 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中
    在这里插入图片描述
  2. 修改git配置
git config --global url."https://".insteadOf git://

然后重新npm install就行

Logo

前往低代码交流专区

更多推荐