【教程】npm的时候ssh报错ssh://git@github.com/frozeman/bignumber.js-nolookahead.git

这篇具有很好参考价值的文章主要介绍了【教程】npm的时候ssh报错ssh://git@github.com/frozeman/bignumber.js-nolookahead.git。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

问题:

fisco@ubuntu:~/fisco/benchmarks$ npm install install web3@0.20.7
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.

npm ERR! A complete log of this run can be found in: /home/fisco/.npm/_logs/2024-01-22T07_08_36_162Z-debug-0.log
 

解决方案

ssh-keygen -t rsa -b 4096 -C "github账号"

这里写入你自己的github账号,一般都是用邮箱注册的

【教程】npm的时候ssh报错ssh://git@github.com/frozeman/bignumber.js-nolookahead.git,ssh,运维

运行后输入这个代码

eval "$(ssh-agent -s)"

【教程】npm的时候ssh报错ssh://git@github.com/frozeman/bignumber.js-nolookahead.git,ssh,运维

在将新生成的账号加入

ssh-add ~/.ssh/id_rsa

【教程】npm的时候ssh报错ssh://git@github.com/frozeman/bignumber.js-nolookahead.git,ssh,运维

cat ~/.ssh/id_rsa.pub

【教程】npm的时候ssh报错ssh://git@github.com/frozeman/bignumber.js-nolookahead.git,ssh,运维

  1. 打开 GitHub 网站,并登录到你的账户。

  2. 转到右上角的用户头像,点击下拉菜单,选择 "Settings"。

  3. 在左侧导航栏中,选择 "SSH and GPG keys"。

  4. 点击 "New SSH key" 或 "Add SSH key"。

  5. 在 "Title" 字段中,可以为密钥设置一个描述性的名称,以便识别。在 "Key" 字段中,粘贴你之前生成的 SSH 公钥。

  6. 确保你已经添加了正确的公钥,然后点击 "Add SSH key" 按钮。

【教程】npm的时候ssh报错ssh://git@github.com/frozeman/bignumber.js-nolookahead.git,ssh,运维

【教程】npm的时候ssh报错ssh://git@github.com/frozeman/bignumber.js-nolookahead.git,ssh,运维

【教程】npm的时候ssh报错ssh://git@github.com/frozeman/bignumber.js-nolookahead.git,ssh,运维

再去执行就完成了

【教程】npm的时候ssh报错ssh://git@github.com/frozeman/bignumber.js-nolookahead.git,ssh,运维

【教程】npm的时候ssh报错ssh://git@github.com/frozeman/bignumber.js-nolookahead.git,ssh,运维

 文章来源地址https://www.toymoban.com/news/detail-817529.html

到了这里,关于【教程】npm的时候ssh报错ssh://git@github.com/frozeman/bignumber.js-nolookahead.git的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 【git】解决git报错:ssh:connect to host github.com port 22: Connection timed out 亲测有效

    如题,git使用中突然报错 ssh:connect to host github.com port 22: Connection timed out 通过查阅各种资料,得知原因可能是由于电脑的防火墙或者其他网络原因导致ssh连接方式 端口22被封锁。 创建一个config文件 将下面的内容复制进去 保存退出 检查是否成功 这里要根据它的提示操作,有个

    2024年02月05日
    浏览(56)
  • npm install报错fatal: unable to access ‘https://github.com/nhn/raphael.git/‘: OpenSSL SSL_read 10054

    报错信息:npm ERR! E:toolsGittGitcmdgit.EXE ls-remote -h -t https://github.com/nhn/raphael.git npm ERR! npm ERR! fatal: unable to access \\\'https://github.com/nhn/raphael.git/\\\': OpenSSL SSL_read: Connection was reset, errno 10054 npm ERR! npm ERR! exited with error code: 128 处理方法 1.git config --global url.\\\"https://\\\" .insteadOf git:// 2.可能是

    2024年02月16日
    浏览(59)
  • 【Git 教程系列第 27 篇】ssh: connect to host github.com port 22: Connection refused 的解决方案

    这是【Git 教程系列第 27 篇】,如果觉得有用的话,欢迎关注专栏。 一:问题描述 自己的一个 git 项目,昨天在公司正常 push 的时候,提示文字信息如下 提示截图信息如下 有人说是因为开了代理的原因,不过之前我开着代理提交是没有问题的,但还是试了一试,可惜并没有

    2024年02月08日
    浏览(39)
  • 【Git】ssh: connect to host github.com port 22: Connection refused

    错误原因:22端口被拒绝访问 在~/.ssh/config文件(有就直接编辑,没有就创建)里添加以下内容,这样ssh连接GitHub的时候就会使用443端口。 修改完,使用`ssh -T git@github.com`查看是否连接成功

    2024年02月04日
    浏览(37)
  • ssh -T git@github.com Connection timed out 解决方案-自测有效

    $ ssh -T git@github.com $ ssh -vT git@github.com -p 443 OpenSSH_9.5p1, OpenSSL 3.1.4 24 Oct 2023 debug1: Reading configuration data /c/Users/Administrator/.ssh/config debug1: /c/Users/Administrator/.ssh/config line 1: Applying options for github.com debug1: Reading configuration data /etc/ssh/ssh_config debug1: Connecting to github.com [20.205.243.166] port

    2024年01月20日
    浏览(46)
  • github 推送报错 ssh: connect to host github.com port 22: Connection timed out 解决

    🚀 作者主页: 有来技术 🔥 开源项目: youlai-mall 🍃 vue3-element-admin 🍃 youlai-boot 🌺 仓库主页: Gitee 💫 Github 💫 GitCode 💖 欢迎点赞 👍 收藏 ⭐留言 📝 如有错误敬请纠正! git push 推送 github 报错如下: 找到 .ssh 文件夹新增 config 配置文件 添加以下配置即可 使用 ssh -T g

    2024年01月25日
    浏览(51)
  • Git报错:git@github.com: Permission denied (publickey)

    输入指令 ssh -T git@github.com 测试SSH链接,出现如下报错: git@github.com: Permission denied (publickey,password,keyboard-interactive). git@github.com: Permission denied (publickey). git@github.com\\\'s password: ,但是即是你输入的是正确的密码,依旧提示 Permission denied, please try again. 。 在网上搜索相关解决方案,

    2024年02月02日
    浏览(56)
  • Git解决“ssh:connect to host github.com port 22: Connection timed out”

    第一次配置github 的ssh,原来使用过gitee的ssh,才知道他们用的都是一个。 我已经有ssh key .位置在 C:Usersjiang.sshid_rsa.pub 点击头像setting就可以,我这里已经粘贴了。 我在桌面右键 git bash here,或cmd也可以,还有一个power shell,我其实都搞不懂区别。 我的运行 通过查阅各种资料

    2024年02月04日
    浏览(52)
  • 【git】git@github.com: Permission denied (publickey).报错问题

    本媛开发,会经常性用到gitee GitHub两个库 毕竟国内项目转战仓到gitee, 但是国外原框架还是GitHub居多 于是就出现连接pull-push经常性切换问题 这个报错是因为本地两个仓都有ssh公共私有密钥导致的 2.1.1 是因为首次本地联通没有配置密钥,或者配置错误? 如果是因为第一次配

    2024年02月11日
    浏览(53)
  • Git问题:解决“ssh:connect to host github.com port 22: Connection timed out”

    操作系统 Windows11 使用Git IDEA 连接方式:SSH 今天上传代码出现如下报错:ssh:connect to host github.com port 22: Connection timed out 再多尝试几次,依然是这样。 最终发现两个解决方案:(二选一) 方法一: 抛弃ssh连接方式,使用http连接。(我试了一下,对于我来说没有用) 操作方法

    2024年02月10日
    浏览(42)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包