首页 > 编程语言 >下载芋道源码前后端启动的错误解决

下载芋道源码前后端启动的错误解决

时间:2023-04-06 23:23:15浏览次数:41  
标签:错误 yarn 芋道 源码 报错 install error 下载

后端:

yudao-server启动报错,命令太长,打开当前父级目录下的.idea目录下的workspace.xml在标签中添加以下子标签

<property name="dynamic.classpath" value="true" />

前端:

错误1:

1、执行yarn install报错:error @achrinza/[email protected]: The engine "node" is incompatible with this module. Expected version "8 || 10 || 12 || 14 || 16 || 17". Got "18.12.1"
error Found incompatible module.
解决方案:执行命令:yarn config set ignore-engines true
再次执行:yarn install

错误2:

2、执行npm run front报错:Error: error:0308010C:digital envelope routines::unsupported
解决方案:set NODE_OPTIONS=--openssl-legacy-provider
再次执行:yarn install

标签:错误,yarn,芋道,源码,报错,install,error,下载
From: https://www.cnblogs.com/mzstudy/p/17294589.html

相关文章

  • vue全家桶进阶之路27:Vue.js 3.0的下载和安装
    使用脚手架vue-cli创建vue3项目,创建前需要准备以下:1、node.js环境见:https://www.cnblogs.com/beichengshiqiao/p/17251233.html2、npm、cnpm工具见:https://www.cnblogs.com/beichengshiqiao/p/17251860.html3、vue框架见:https://www.cnblogs.com/beichengshiqia......
  • flask请求上下文分析,源码request原理,wtforms,精确导出依赖,函数和方法,threading.locl对
    内容回顾蓝图第一步:导入第二步:实例化得到对象,可以指定static和templates第三步:app中注册蓝图,注册蓝图时,可以指定前缀第四步:使用蓝图,注册路由,注册请求扩展g对象当次请求的全局对象,在当次请求中可以放值和取值跟session的区别是session可以在多次请求中使用,g对象只在当次请......
  • C++ thread 源码阅读笔记
    thread类解析构造函数thread()无参构造,会创建一个空的线程对象。thread(FunctionCallback,...Args)创建并开启一个线程,线程任务就是参数里的回调函数。thread(thread&&other)移动构造,具体请参照C++的移动语义。PS:thread类没有拷贝构造。thread(constthread&......
  • 源码安装slurm
    一、源码安装munge1、下载munge下载地址:https://github.com/dun/munge/releases2、安装编译 tar-Jxvfmunge-0.5.15.tar.xz./bootstrap./configure--prefix=/usr/local/munge\--sysconfdir=/usr/local/munge/etc\--localstatedir=/usr/local/munge/local\--with-......
  • flask之request源码和第三方模块wtforms
    目录请求上下文分析(源码:request原理)1.导出项目的依赖2.函数和方法3.threading下的local对象4.偏函数5.flask整个生命执行流程---flask1.1.41版本为例wtforms---了解请求上下文分析(源码:request原理)1.导出项目的依赖以前导出项目的依赖:pipfreeze>requirements.txt......
  • flask源码分析
    目录请求上下文分析(源码:request原理)导出项目的依赖函数和方法threading.local对象偏函数flask整个生命执行流程(1.1.4版本为例)wtforms请求上下文分析(源码:request原理)导出项目的依赖之前的pipfreeze>requeirments.txt会把当前解释器环境下的所有第三方依赖都导出来......
  • 六轴桌面机械臂 上位机(PC)源码与下位机(单片机)源码
    六轴桌面机械臂上位机(PC)源码与下位机(单片机)源码YID:1690609972944148......
  • 安卓项目源码 校园跑腿帮APP android stu dio项目 附源码
    全新安卓项目源码校园跑腿帮APPandroidstudio项目附源码,安装包,说明,录屏,截屏。Materialdesign风格设计,支持登录注册,任务发布,修改,上拉加载,下拉刷新,一键换肤等。YID:7598641395930165......
  • Hive下载安装配置
    0准备工作下载安装jdk:https://www.cnblogs.com/lgjb/p/17292890.html搭建Hadoop完全分布式集群:https://www.cnblogs.com/lgjb/p/17292835.html下载安装MySQL:https://www.cnblogs.com/lgjb/p/17293154.html1下载HiveHive官网:https://hive.apache.org/general/downloads/1.......
  • iOS - 小文件下载篇(边下载边写入文件)
    先签订NSURLConnectionDataDelegate#defineMSFileWithPath(path)[[NSSearchPathForDirectoriesInDomains(NSCachesDirectory,NSUserDomainMask,YES)lastObject]stringByAppendingPathComponent:path]-(void)viewDidLoad{[superviewDidLoad];NSStr......