npm ERR! code 128

npm ERR! code 128
npm ERR! A git connection error occurred
npm ERR! command git --no-replace-objects ls-remote ssh://[email protected]/nhn/raphael.git
npm ERR! ssh: connect to host github.com port 22: Connection timed out
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.

导致原因:

a、检查网络连接是否正常。可以尝试使用其他工具或服务来测试网络连接,如 ping 或 traceroute。

b、检查远程服务器的连接状态。可以尝试使用浏览器或其他工具访问 GitHub 网站,看是否能够正常访问。

c、检查远程仓库的 URL 是否正确。可以在 GitHub 网站上查找远程仓库的 URL,并确保它与您在 npm 配置文件中使用的 URL 一致。

d、尝试使用其他连接方式。可以尝试使用 HTTPS 连接或使用 SSH 密钥进行连接。可以在 npm 配置文件中指定连接方式。

解决:

打开GIT BASH,生成ssh公钥

1、ssh-keygen -t rsa -C "注册时的邮箱"

2、npm ERR! code 128_第1张图片一路回车即可

3、cat ~/.ssh/id_rsa.pub 生成公钥,这里不能使用ctrl+c,所以反键Copy

4、复制公钥后,打开gitee,登录账户,找到账号设置

        npm ERR! code 128_第2张图片

5、找到安全设置中的SSH公钥

        npm ERR! code 128_第3张图片

6、将复制的公钥黏贴在此处

        npm ERR! code 128_第4张图片

7、再次回到项目中

        npm i

你可能感兴趣的:(git,ssh,vue.js)