您的位置:首页 > Web前端 > Node.js

node 使用 npm 安装 cnpm 的方法及错误

2019-05-14 21:11 411 查看

cnpm安装

我们可以使用大爱淘宝定制的 cnpm 命令行工具代替默认的 npm
官方网址:http://npm.taobao.org
安装命令:

npm install -g cnpm --registry=https://registry.npm.taobao.org

安装时出现错误

✔️ 解决办法1

可以尝试,先运行:

npm config set registry "http://registry.npmjs.org/"

或者:
npm config set registry https://registry.npm.taobao.org

再执行:
npm install -g cnpm

#配置后可通过下面方式来验证是否成功
npm config get registry

✔️解决办法2

先输入以下命令并运行(记得删除#内容):
#注册模块镜像

npm set registry https://registry.npm.taobao.org

#node-gyp 编译依赖的 node 源码镜像
npm set disturl https://npm.taobao.org/dist

#清空缓存
npm cache clean --force

最后运行:
npm install -g cnpm --registry=https://registry.npm.taobao.org

✔️解决办法3

如果你的错误提示如下:
npm ERR! The operation was rejected by your operating system.
npm ERR! It is likely you do not have the permissions to access this file as the current user
npm ERR!
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator (though this is not recommended).
需要先获取权限(Windows用户应该使用右键,选择管理员权限运行cmd即可),先在终端执行命令:

sudo -s

按照提示,输入密码后再执行:
npm install -g cnpm --registry=https://registry.npm.taobao.org

验证安装是否正确

执行命令:

cnpm -v

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: