本文主要是介绍cnpm安装,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
npm install -g cnpm --registry=https://registry.npmmirror.com
# 注册模块镜像
npm set registry https://registry.npmmirror.com
// node-gyp 编译依赖的 node 源码镜像
npm set disturl https://npmmirror.com/dist
// 清空缓存
npm cache clean --force
// 安装cnpm
npm install -g cnpm --registry=https://registry.npmmirror.com
安装出现错误:node版本过低
解决方案一:重新安装node,>=14.18.0
解决方案二:安装低版本的npm :
npm install -g cnpm@6.1.0 --registry=https://registry.npmmirror.com
这篇关于cnpm安装的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!