树莓派入手排坑——解决npm一直停在"checking installable status"的问题

npm install卡在checking installable status

在使用NPM过程中经常会用到npm install命令,发现有时候会卡在checking installable status不动,在网上搜寻了各种解决方法之后在这里做一个记录。

原因

  • 修改过仓库源(淘宝源之类的)
  • 远程仓库连接
  • 旧的npm缓存与项目冲突

解决方案

  1. 清理npm历史缓存
    sudo npm cache clean
    
  2. 更改npm仓库源为淘宝源
    npm config set registry https://registry.npm.taobao.org
    
  3. 验证一下结果和内容(这步可以不用做)
    npm config get registry 
    或  npm info express
    
  • 感谢大佬①帮助
  • 感谢大佬②帮助
  • 感谢大佬③帮助

你可能感兴趣的:(树莓派)