安装cnpm时一直安装无报错但是查看版本时提示错误:
无法安装可以这样解决:
解决安装卡顿或无法安装:
# 注册模块镜像
npm set registry https://registry.npm.taobao.org
// node-gyp 编译依赖的 node 源码镜像
npm set disturl https://npm.taobao.org/dist
// 清空缓存
npm cache clean --force
// 安装cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
查看版本报错安装不成功解决:是npm和cnpm版本不匹配导致的
一:查看当前npm版本
npm -v
二:安装对应版本
npm install -g cnpm@6.0.0 --registry=https://registry.npm.taobao.org
三:查看cnpm版本,出现以下提示即安装成功