These dependencies were not found: * core-js/fn/promise in ./src/util/formHtml.js * file-saver in ./src/util/formHtml.js To install them, you can run: npm install --save core-js/fn/promise file-saver These relative modules were not found: * ../../../service/api in ./src/util/element/child.js, ./src/util/vant/child.js * ../../router/router in ./src/util/formHtml.js * ../../service/common in ./src/util/data.js * ../../service/storage in ./src/util/data.js * ../form/control/index in ./src/util/formHtml.js 给我中文解析
时间: 2023-08-02 15:08:33 浏览: 264
这些依赖项未找到:
* 在./src/util/formHtml.js中的core-js/fn/promise
* 在./src/util/formHtml.js中的file-saver
要安装它们,可以运行:npm install --save core-js/fn/promise file-saver
这些相对模块未找到:
* 在./src/util/element/child.js、./src/util/vant/child.js中的../../../service/api
* 在./src/util/formHtml.js中的../../router/router
* 在./src/util/data.js中的../../service/common
* 在./src/util/data.js中的../../service/storage
* 在./src/util/formHtml.js中的../form/control/index
相关问题
ERROR Failed to compile with 4 errors 10:23:43 These dependencies were not found: * @jiaminghi/c-render/lib/plugin/util in ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/BigScreen/LabelTag.vue?vue&type=script&lang=js& * @jiaminghi/charts/lib/util/index in ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/BigScreen/LabelTag.vue?vue&type=script&lang=js& * @jiaminghi/data-view in ./src/main.js To install them, you can run: npm install --save @jiaminghi/c-render/lib/plugin/util @jiaminghi/charts/lib/util/index @jiaminghi/data-view Failed to resolve loader: less-loader You may need to install it. Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\DumpStack.log.tmp' 错误解释
这是一个编译错误,其中有一些依赖项未被找到。具体地说,缺少@jiaminghi/c-render/lib/plugin/util,@jiaminghi/charts/lib/util/index和@jiaminghi/data-view。为了解决这个问题,你需要运行命令:npm install --save @jiaminghi/c-render/lib/plugin/util @jiaminghi/charts/lib/util/index @jiaminghi/data-view,来安装缺少的依赖项。此外,还有一个关于less-loader的错误,可能需要安装它。最后,还有一个关于chokidar错误的提示,它可能是由于某些文件正在被占用或锁定,可以尝试重新启动你的计算机来解决这个问题。
extras/check_dependencies.sh rm -f cub tar xozf openfst-1.7.2.tar.gz tar zxvf sctk-20159b5.tar.gz tar -xmzf cub-1.8.0.tar.gz gzip: stdin: unexpected end of file tar: Child returned status 1 tar: Error is not recoverable: exiting now gzip: stdin: unexpected end of file make: *** [Makefile:131: sctk] Error 2 make: *** Waiting for unfinished jobs.... tar: Child returned status 1 tar: Error is not recoverable: exiting now make: *** [Makefile:185: cub/common.mk] Error 2 extras/check_dependencies.sh: automake is not installed. extras/check_dependencies.sh: autoconf is not installed. extras/check_dependencies.sh: gfortran is not installed extras/check_dependencies.sh: neither libtoolize nor glibtoolize is installed extras/check_dependencies.sh: subversion is not installed extras/check_dependencies.sh: Intel MKL does not seem to be installed. ... Run extras/install_mkl.sh to install it. Some distros (e.g., Ubuntu 20.04) provide ... a version of MKL via the package manager, but verify that it is up-to-date. ... You can also use other matrix algebra libraries. For information, see: ... http://kaldi-asr.org/doc/matrixwrap.html extras/check_dependencies.sh: Some prerequisites are missing; install them using the command: sudo apt-get install automake autoconf gfortran libtool subversion make: *** [Makefile:39: check_required_programs] Error 1
这是一个关于安装Kaldi时出现的错误信息,提示缺少一些依赖库,包括automake、autoconf、gfortran、libtool、subversion等。建议使用以下命令安装缺少的依赖:
sudo apt-get install automake autoconf gfortran libtool subversion
另外,如果需要使用Intel MKL库,则需要运行extras/install_mkl.sh安装该库。如果使用其他的矩阵代数库,可以参考http://kaldi-asr.org/doc/matrixwrap.html。
阅读全文