npm报错128

  • Post author:
  • Post category:其他


npm ERR! code 128
npm ERR! An unknown git error occurred
npm ERR! command git --no-replace-objects ls-remote ssh://git@github.com/frozeman/bignumber.js-nolookahead.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! A complete log of this run can be found in:
npm ERR!     E:\Develop\nodejs\node_cache\_logs\2023-01-12T06_14_39_735Z-debug-0.log
PS F:\caliper\caliper> git config --global url."https://".insteadOf git://
PS F:\caliper\caliper> npm i
npm ERR! code 128
npm ERR! An unknown git error occurred
npm ERR! command git --no-replace-objects ls-remote ssh://git@github.com/frozeman/bignumber.js-nolookahead.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.


分为几种情况,一种一种排查

第一种,首先,你得有github账号,并且添加了ssh秘钥


第一步:首先在 git 设置一下邮箱,当前文件下打开 git bash

输入命令: ssh-keygen -t rsa -C ”your@email.com”,设置你的邮箱地址。

出现:

Generating public/private rsa key pair.

Enter file in which to save the key (/Users/your_user_directory/.ssh/id_rsa):

直接回车,系统会在 .ssh 文件夹下生成两个文件,id_rsa 和 id_rsa.pub 文件,使用记事本打开 id_rsa.pub 复制。

或使用命令:clip < ~/.ssh/id_rsa.pub

复制文件内容。

第二步:打开 github ,进入设置,进行添加密钥。

打开:https://github.com/,进入设置 – > SSH and GPG keys – > SSH keys。

在这里插入图片描述



第二种

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

使用这个命令 将ssh 下载变成https就行了

或者在C盘,用户下git.config里面修改



都去试试看吧



版权声明:本文为J2633500154原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。