美文网首页技术笔记
vue3 安装使用是遇到的各种问题

vue3 安装使用是遇到的各种问题

作者: 子夜书案 | 来源:发表于2023-01-06 13:27 被阅读0次

    npm i ERESOLVE unable to resolve dependency tree

    • npm install --legacy-peer-deps(推荐)

    安装 yarn

    • npm install -g yarn

    yarn 运行 vue3 项目

    • cd you project
    • yarn install
    • yarn serve

    在 mac 上安装 yarn 报:Error: EACCES: permission denied, mkdir '/usr/local/lib/node_modules/yarm'

    sudo npm install -g yarn

    • 命令行进入 /usr/local/lib/ 目录
    • 执行 sudo chmod -R 7777 node_modules

    相关文章

      网友评论

        本文标题:vue3 安装使用是遇到的各种问题

        本文链接:https://www.haomeiwen.com/subject/wmjttdtx.html