Vue:项目启动时报错These dependencies were not found 解决办法

这篇具有很好参考价值的文章主要介绍了Vue:项目启动时报错These dependencies were not found 解决办法。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

在命令提示符中输入下载依赖包的命令

npm install

出现错误

these dependencies were not found,vue.js,前端,javascript
原因分析

可能因为npm版本过高,所以对某些命令比npm6.x更严格

解决方案

1、删掉node_moudles文件夹
2、使用npm install –legacy-peer-deps重新安装所有依赖包

these dependencies were not found,vue.js,前端,javascript

每天进步一点点,开心也多一点点文章来源地址https://www.toymoban.com/news/detail-803391.html

到了这里,关于Vue:项目启动时报错These dependencies were not found 解决办法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • npm报错:These dependencies were not found:* canvas in ./node_modules/pdfh5/js/pdf.js* dommatrix/dist/d

    npm 报错: These dependencies were not found: * canvas in ./node_modules/pdfh5/js/pdf.js * dommatrix/dist/dommatrix.js in ./node_modules/pdfh5/js/pdf.js * web-streams-polyfill/dist/ponyfill.js in ./node_modules/pdfh5/js/pdf.worker.js To install them, you can run: npm install --save canvas dommatrix/dist/dommatrix.js web-streams-polyfill/dist/ponyfill.js 不

    2024年02月05日
    浏览(104)
  • These dependencies were not found:core-js/modules/es.object.to-string.js in ./src/router/index.js

    ERROR Failed to compile with 3 errors These dependencies were not found: * core-js/modules/es.object.to-string.js in ./src/router/index.js * core-js/modules/es.string.iterator.js in ./src/router/index.js * core-js/modules/web.dom-collections.iterator.js in ./src/router/index.js To install them, you can run: npm install --save core-js/modules/es.object.to-str

    2024年02月06日
    浏览(54)
  • ERROR Failed to compile with 2 errors These relative modules were not found:

     提示在./node_modules/flatgeobuf/lib/mjs/packedrtree.js中找不到./config.js ./node_modules/flatgeobuf/lib/mjs/generic/featurecollection.js 中找不到../logger.js 如果是用vscode编写,按住ctrl+报错文件名 进入到该报错文件 根据引入  import Config from \\\'./config.js\\\' 去寻找路径\\\'./\\\'下有没有config.js文件 发现只有\\\"Conf

    2024年02月02日
    浏览(61)
  • git clone时报错remote: The project you were looking for could not be found or you don‘t have permission

    报错信息 remote: The project you were looking for could not be found or you don\\\'t have permission to view it. 说明没有该项目的权限 如果你登录了别人的账号进入仓库看见有项目但是拉取不了, 说明你去拉取这个仓库的账号没有拉取的权限。 可以先进入凭证管理器查看账号和密码如果和拉取的那

    2024年02月13日
    浏览(54)
  • 【异常】Jenkins执行前端项目Npm构建时,出现报错This dependency was not found: vue-class-component in ./node_modules/vu

    同事的代码变更,导致了在Jenkins无法执行构建 错误的原因是项目中引入了vue-class-component,但是在项目的依赖列表中,却没有找到它,因此会报如上的错误。 vue-class-component是一个用于类式Vue组件的TypeScript装饰器。 它允许您将Vue组件定义为类,这可以使您的代码更有组织性和

    2024年02月03日
    浏览(62)
  • MySQL启动服务时报错:mysqld: File ‘./binlog.index‘ not found (OS errno 13 - Permission denied)

    Linux中使用 systemctl start mysqld.service 启动服务时失败: 查看日志: tail -f /var/log/mysqld.log : 显示:mysqld: File ‘./binlog.index’ not found (OS errno 13 - Permission denied) 在Mysql的 数据目录 创建 data文件夹,我的数据目录是 /data/mysql,默认路径是 /var/lib/mysql; 修改 配置文件中的datadir,将

    2024年02月07日
    浏览(47)
  • idea新建Java-maven项目时,出现Dependency ‘ xxx(jar包名)‘ not found的解决方案

    项目场景: 使用idea创建maven项目时,导入简单依赖时(本文以mysql-connector-java为例)。 问题: 首先,在创建新的maven项目中,出现下列两种情况: (1)输入dependency要导入依赖时,idea没有jar包名的提示。 (2)输入完整包名后,颜色为 红色 。 真实场景如下: 刷新maven,尝试

    2024年02月11日
    浏览(55)
  • springboot+dubbo项目启动项目时报错 zookeeper not connected

    项目在公司网络启动时,能正常启动。但通过vpn连接到公司网络时却无法启动报下面的错误 java.lang.IllegalStateException: zookeeper not connected 。 猜测:连接到zookeeper的服务器网络策略不通 — 通过telnet证实端口网络时通的。该猜测不成立。 进一步经过报错的日志,找到对应的源码

    2024年02月11日
    浏览(44)
  • JUnit5单元测试提示“Not tests were found”错误

    JUnit5单元测试提示“Not tests were found”错误,如下图所示: 或者 问题解析: 1)使用@Test注解时,不能有返回值; 2)使用@Test注解时,不能使用private; 存在以上情况时执行单元测试,都会提示“Not tests were found”错误,如下图所示: 正确的示例是使用public void定

    2024年01月16日
    浏览(54)
  • 解决npm install时报错Could not resolve dependency

    最近在新的项目使用npm install时发现报错: npm WARN cli npm v9.6.4 does not support Node.js v15.14.0. This version of npm supports the following node versions: `^14.17.0 || ^16.13.0 || =18.0.0`. You can find the latest version at https://nodejs.org/. npm ERR! code ERESOLVE npm ERR! ERESOLVE could not resolve npm ERR!  npm ERR! While resolving:

    2024年02月08日
    浏览(51)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包