zoukankan      html  css  js  c++  java
  • 导入VUE前端工程npm install yarn install 常见错误 及其互转

    1. 我这里使用了nrm命令来切换npm的实际镜像

    2.切换为淘宝镜像 nrm use taobao

    3.下载依赖包 npm install

    结果一直卡在sill install loadAllDepsIntoIdealTree,如果有耐心就可以等到错误出来,

    4. 查看日志文件 C:UsersAdministratorAppDataRoaming pm-cache\_logs2020-07-07T00_42_01_336Z-debug.log

    发现里面有的代理地址有问题 

     https://registry.npm.taobao.org/@XXX failed, reason: connect ETIMEDOUT 93.184.216.34:8080

    5. 该问题的处理方式是 去除代理

    6,再重新运行npm install,基本都能下载,我们又遇到了node-sass下载不下来的问题.

    7. 解决node-sass问题关键就是改该文件下载的地址npm config set sass-binary-site https://npm.taobao.org/mirrors/node-sass

    OK

    不过在运行 npm run dev 时候,还是报了问题...

    原因就是我们公司这个项目是 yarn.lock锁定的版本.  所以我需要改成使用 yarn来安装依赖.

    注意: yarn也我遇到了个坑,我用yarn1.20及其以上版本运行 yarn install 时候一直报问题,,,后来改成低版本的 yarn1.9.2 就把依赖装成功了, 项目也启动起来了.

    补充知识:  yarn.lock文件与package-lock.json 互转

    npm install -g synp

    yarn.lock => package-lock.json

    yarn # be sure the node_modules folder dir and is updated
    synp --source-file /path/to/yarn.lock
    # will create /path/to/package-lock.json

    package-lock.json => yarn.lock

    npm install # be sure the node_modules dir exists and is updated
    synp --source-file /path/to/package-lock.json
    # will create /path/to/yarn.lock

    转换生成package-lock.json后,我删除node_models文件夹,然后用npm install 就能把依赖包安装成功,npm run dev也没有问题.

    我的软件版本

  • 相关阅读:
    安装 TensorFlow
    Active Learning
    基于PU-Learning的恶意URL检测
    AAAI 2018 论文 | 蚂蚁金服公开最新基于笔画的中文词向量算法
    Graph 卷积神经网络:概述、样例及最新进展
    深度学习在graph上的使用
    xgboost入门与实战(实战调参篇)
    xgboost入门与实战(原理篇)
    机器学习中的损失函数 (着重比较:hinge loss vs softmax loss)
    <html>
  • 原文地址:https://www.cnblogs.com/xin1006/p/13260163.html
Copyright © 2011-2022 走看看