npm 错误代码 128
问题描述npm install 下载 vue-element-admin报错如下:npm ERR! code 128npm ERR! An unknown git error occurrednpm ERR! command git --no-replace-objects ls-remote ssh://git@github.com/nhn/raphael.gitnpm ERR! git@git
·
问题描述
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.
解决方式
- 执行命令:
ssh-keygen -t rsa -C "你的邮箱"
输入上述命令后一直按回车,会在 C:\Users\用户名\.ssh
下生成一个id_rsa.pub
文件
- 将
id_rsa.pub
文件内容加入到github网站的SSH keys中
- 修改git配置
git config --global url."https://".insteadOf git://
然后重新npm install就行
更多推荐
已为社区贡献2条内容
所有评论(0)