首页 > 其他分享 >npm install 时,卡住不动,五种解决方法

npm install 时,卡住不动,五种解决方法

时间:2024-01-25 17:48:15浏览次数:44  
标签:npm cnpm nrm yarn 卡住 install registry

npm install 时,卡住不动,五种解决方法

 

运行npm install 时,卡住不动,五种解决方法
检查网络设置,删除node_modules重新npm install

配置npm代理

1 2 3 4 5 6 7 8 //  配置nmp代理来提高速度,如设置淘宝镜像 npm config set registry https://registry.npm.taobao.org   // 查看配置是否成功 npm config get registry   // 成功后重新npm install安装 npm install

使用nrm来管理npm镜像源

1 2 3 4 5 6 7 8 // 全局安装nrm (mac需要加上sudo) npm install -g nrm   // 查看可配置的源列表 nrm ls   // 使用配置列表中的源 nrm use taobao

使用cnpm来安装

1 2 3 4 5 // 全局安装cnpm (mac需要加上sudo) npm install cnpm -g --registry=https://registry.npmmirror.com   // 成功后使用cnpm install安装 cnpm install

使用yarn来安装

1 2 3 4 5 // 全局安装yarn (mac需要加上sudo) npm install -g yarn   // 成功后使用yarn install安装 yarn install  

标签:npm,cnpm,nrm,yarn,卡住,install,registry
From: https://www.cnblogs.com/mouseleo/p/17987737

相关文章

  • npm 打包生成的文件 本地调试运行
    1vscode安装liveserver插件  2npm打包文件执行打包命令npmrunbuild:dev打包成功后,在项目dist文件夹下会生成打包文件3使用vscode打开dist文件夹使用liveserver打开index.html 运行如下  ......
  • 使用nvm下载node版本安装npm失败
     1.从http://npm.taobao.org/mirrors/npm/下载对应npm包2.将npm包中bin文件夹下的四个文件复制粘贴到对应node文件夹中3.把下载npm包改名为npm放入node路径下的node_module中参考文章:https://blog.csdn.net/qq_39293316/article/details/132413050 ......
  • 关于使用 npm的一些事(一)
    npmERR!codeCERT_HAS_EXPIREDnpmERR!errnoCERT_HAS_EXPIREDnpmERR!requesttohttps://registry.npm.taobao.org/cnpmfailed,reason:certificatehasexpirednpmERR!Acompletelogofthisruncanbefoundin:D:\nodejs\node_cache\_logs\2024-01-23T11......
  • PowerShell 给命令取一个别名 ( 例子: pnpm -> n)(转载)
    查看一下profile文件的位置执行命令echo$PROFILE1output:C:\Users\Administrator\Documents\PowerShell\Microsoft.PowerShell_profile.ps11以自己电脑实际的输出位置为准(每个人的电脑输出可能不同)修改接下来到这个目录创建/修改这个脚本文件(第一次玩这个功能.应该都没有......
  • cmd&powershell有时会卡住(假死)的解决办法
    windows10cmd命令提示符/批处理/终端快速编辑模式bug程序运行被阻塞顶部标题栏提示选择需要回车或空格才能继续执行的解决方案... 问题描述:   开启命令行窗口后,按了一下键盘恢复,一下刷新一大片,这个问题就是像是假死一样,也不报错,这是怎么回事呢原因分析:cmd......
  • 淘宝NPM站点证书已过期(2024年1月23日)
    今天前端项目执行CI发版报错:[1/4]Resolvingpackages...errorAnunexpectederroroccurred:"https://registry.npm.taobao.org/axios:certificatehasexpired". 从浏览器访问 https://registry.npm.taobao.org提示:你的连接不是专用连接攻击者可能试图从registr......
  • k8s install nfs-pv
    https://artifacthub.io/packages/helm/nfs-subdir-external-provisioner/nfs-subdir-external-provisioner部署: helminstall-nnfs-provisionernfs-subdir-external-provisioner-retainnfs-subdir-external-provisioner/nfs-subdir-external-provisioner--setnfs.se......
  • 如何在 Ubuntu 20.04 上安装 Node.js 和 npm
    如何在Ubuntu20.04上安装Node.js和npm2020-05-15106752版权 简介: 本文我们主要为大家介绍在Ubuntu20.04上安装Node.js和npm的三种不同的方式。镜像下载、域名解析、时间同步请点击 阿里巴巴开源镜像站一、概述Node.js是一个跨平台的JavaScript运......
  • window install docker
    First,installwsl(referto https://learn.microsoft.com/en-us/windows/wsl/install,https://zhuanlan.zhihu.com/p/69121280):executebelowcommandinpowershell  usingadminstratorwsl--installEnable-WindowsOptionalFeature-Online-FeatureNameVirtualMac......
  • How to install Clang 17 or 18 in Ubuntu 22.04 20.04
    HowtoinstallClang17or18inUbuntu22.04|20.04ThissimpletutorialshowshowtoinstallthelatestClangcompiler17and/or18inUbuntu20.04,Ubuntu22.04,andUbuntu23.10.UbuntuincludesseveralversionsofClanginitssystemrepositories.B......