赞
踩
npm install -g cnpm --registry=https://registry.npm.taobao.org
cmd中输入以下命令获取到cnpm下载目录
npm config get prefix
在环境变量
将cnpm下载目录路径添加进“系统变量”的path中来就可以了。
1.Error: Cannot find module ‘diagnostics_channel‘
2.Cannot find module ‘node:fs‘
cnpm偶尔出现安装异常的情况,不建议cnpm安装包,还是用npm吧,慢的话可以用淘宝代理
npm config set registry https://registry.npm.taobao.org
npm config set registry https://registry.npmjs.org/ // 这二个代理都可以,那个好用用那个
npm config get registry // 查看代理
npm cache clean // 先清除在下载
npm install -g cnpm --registry=https://registry.npm.taobao.org
1、执行:
npm config get proxy
npm config get https-proxy
如果返回值都为空,下面的这个设置就可以跳过啦
如果返回值不为null,继续执行:
npm config set proxy null
npm config set https-proxy null
2、执行:
npm config set registry http://registry.cnpmjs.org/
3.安装cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
然后就可以用ncpm安装其他包了
cnpm install -g yarn
yarn config get registry
yarn config set registry https://registry.npm.taobao.org
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。