首页 > 其他分享 >vue-element-admin 运行踩坑笔记

vue-element-admin 运行踩坑笔记

时间:2023-03-25 10:22:50浏览次数:52  
标签:npm git ERR admin element github vue key com

 

npm WARN deprecated [email protected]: This SVGO version is no longer supported. Upgrade to v2.x.x. npm ERR! Error while executing: npm ERR! G:\ForCodeSoftware\Git\cmd\git.EXE ls-remote -h -t ssh://[email protected]/sohee-lee7/Squire.git npm ERR! npm ERR! @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ npm ERR! @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ npm ERR! @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ npm ERR! IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! npm ERR! Someone could be eavesdropping on you right now (man-in-the-middle attack)! npm ERR! It is also possible that a host key has just been changed. npm ERR! The fingerprint for the RSA key sent by the remote host is   npm ERR! Please contact your system administrator. npm ERR! Add correct host key in /c/Users/Lenovo/.ssh/known_hosts to get rid of this message. npm ERR! Offending RSA key in /c/Users/Lenovo/.ssh/known_hosts:1 npm ERR! Host key for github.com has changed and you have requested strict checking. npm ERR! Host key verification failed. 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! npm ERR! exited with error code: 128
删除文件/c/Users/Lenovo/.ssh/known_hosts
npm WARN deprecated [email protected]: This SVGO version is no longer supported. Upgrade to v2.x.x. npm ERR! Error while executing: npm ERR! G:\ForCodeSoftware\Git\cmd\git.EXE ls-remote -h -t git://github.com/adobe-webplatform/eve.git npm ERR! npm ERR! fatal: unable to connect to github.com: npm ERR! github.com[0: 20.205.243.166]: errno=Unknown error
git 软件 git config --global url."https://".insteadOf git://   npm WARN deprecated [email protected]: This SVGO version is no longer supported. Upgrade to v2.x.x. npm ERR! Error while executing: npm ERR! G:\ForCodeSoftware\Git\cmd\git.EXE ls-remote -h -t https://github.com/nhn/raphael.git npm ERR! npm ERR! error: RPC failed; curl 28 Recv failure: Connection was reset npm ERR! fatal: expected flush after ref listing npm ERR! npm ERR! exited with error code: 128 npm ERR! A complete log of this run can be found in:
git 软件 输入 git config --global --unset http.proxy git config --global --unset https.proxy
之后成功运行

标签:npm,git,ERR,admin,element,github,vue,key,com
From: https://www.cnblogs.com/HelloQLQ/p/17254223.html

相关文章

  • vue实现移动端签名功能之 vue-esign插件篇
    1.安装vue-esignnpminstallvue-esign--save2.全局引用  3.代码  4.将生成的base64转成文件  handleGenerate(){   this.$refs.esign  ......
  • vue03 01.创建项目
    目录01.创建项目打包工具vite介绍安装命令启动项目浏览效果代码目录打包预览运行01.创建项目打包工具vite官网vite介绍Vite也是前端构建工具相较于webpack,vite采......
  • vue2 - mockjs的使用
    mockjs官网:http://mockjs.com/ 1.安装mockjsnpminstallmockjs 2.创建mock文件夹并且创建index.js//引入mockjsimportMockfrom"mockjs"//引入数据import......
  • element-ui table组件使用expand-change时,禁用某行不可展开
    由于业务需求,要求某行数据满足一定条件时不可展开,搜了下,大家提供的方案是:通过样式隐藏展开内容,或者隐藏展开按钮,隐藏内容和需求不合适,隐藏按钮的话也比较复杂。自己研究了......
  • 商城网站毕业设计( Python +Vue)
    网站介绍基于python开发的电子商城网站,平台采用B/S结构,后端采用主流的Python语言进行开发,前端采用主流的Vue.js进行开发。这是给师弟开发的毕业设计。整个平台包......
  • centos7 yum 安装nodejs 16,搭建编译vue项目环境
    1、安装nodejscurl-fsSLhttps://rpm.nodesource.com/setup_16.x|sudobash-sudoyuminstallnodejsnode-v2、安装yarn#安装yarnnpminstall-gyarn#查......
  • vue2中添加全局样式
    在assets文件夹中创建一个css文件,放入想要的全局样式.好了之后找到main文件然后再main.js文件中import'./assets/golbal.css'即可......
  • 基于vue框架axios网络请求封装
    原因axios是网络请求的第三库,为了防止降低对第三库的依赖性,所以将axios请求封装为函数,方便后期代码的维护安装npminstallaxios封装在目录结构src文件夹下创建n......
  • 初识Vue
    vue是动态构建用户界面的渐进式JavaScript框架:作者是尤雨溪Vue的特点:遵循MVVM模式编码简洁,体积小,运行效率高,适合移动/PC端开发它本身只关注UI,可以引入其它第三方库开发......
  • vue3报错 Vue received a Component which was made a reactive object.
    报错信息如下:VuereceivedaComponentwhichwasmadeareactiveobject.Thiscanleadtounnecessaryperformanceoverhead,andshouldbeavoidedbymarkingthe......