作者:海边的迷思萝_160 | 来源:互联网 | 2024-11-04 17:01
在GitHub上克隆vue-element-admin项目后,使用`npminstall`安装依赖时遇到了未知的Git错误。具体错误信息为`npmERR!code128`,提示命令执行失败。这可能是由于网络问题、Git配置不正确或某些依赖包的仓库地址无效导致的。建议检查网络连接、更新Git版本并确保所有依赖项的URL正确无误。
vue-element-admin运行npm install 报错
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.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users605\AppData\Local\npm-cache\_logs22-03-21T10_41_46_956Z-debug.log
尝试了好几种办法,修改.gitconfig文件,配置过tb镜像,也重新配置过GitHub的ssh,还是未能解决,最后看见一篇直接删除依赖的,删除完了就解决了。
原文:https://juejin.cn/post/6979047498941726750
下面是修改了一下的,只需要删除这些也是可以安装了的,
1、打开package.json把"tui-editor"删掉
2、删除"tui-editor"相关路由、components,具体文件地址如下:
路由位置: src/router/modules/components.js 搜索markdown,把相应路由代码删除
components位置:
src/components/MarkdownEditor
删除后,再执行npm install 或 npm install --registry=registry.npm.taobao.org 下载并运行成功!
vue-admin-template简洁版可以直接npm install运行成功
vue-element-admin加强版的却运行报错的,后续找到方法了再来更新。。。