npm ERR! code 128 npm ERR! command failed npm ERR! command git ls-remote ssh://git@github.com/nhn/raphael.git npm ERR! Warning: Permanently added 'github.com' (ED25519) to the list of known hosts. 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: npm ERR! C:\Users\030t0035\AppData\Local\npm-cache\_logs\2023-07-11T07_54_57_317Z-debug.log
时间: 2023-07-23 09:02:25 浏览: 175
shared-node-browser-library-boilerplate:使用rollup.js构建可重用的NPM模块,以在nodejs和浏览器中运行
这个错误提示表明在执行 `npm` 命令时出现了问题,具体是因为没有访问权限或者无法从远程仓库读取。这可能是由于以下原因之一导致的:
1. 权限问题:请确保你有访问该仓库的权限。如果你是仓库的拥有者或者有相应的权限,可以尝试使用正确的凭证进行身份验证。
2. 仓库不存在:请确保你正在访问存在的仓库。如果该仓库不存在或者地址不正确,将无法从远程仓库读取。
3. SSH 配置问题:如果你使用的是 SSH 协议进行访问,可能存在 SSH 配置的问题。请确保你的 SSH 密钥已正确配置,并且在你的 GitHub 账户中添加了正确的公钥。
你可以检查以上几个方面,尝试解决问题。如果问题仍然存在,可以查看 `C:\Users\030t0035\AppData\Local\npm-cache\_logs\2023-07-11T07_54_57_317Z-debug.log` 文件中的详细日志,以获取更多信息来定位问题所在。
阅读全文