安装淘宝镜像错误代码如下:
npm install -g cnpm --registry=https://registry.npm.taobao.org
npm install -g cnpm --registry=https://registry.npm.taobao.org
npm WARN checkPermissions Missing write access to /usr/local/lib/node_modules
npm ERR! code EACCES
npm ERR! syscall access
npm ERR! path /usr/local/lib/node_modules
npm ERR! errno -13
npm ERR! Error: EACCES: permission denied, access '/usr/local/lib/node_modules'
npm ERR! [Error: EACCES: permission denied, access '/usr/local/lib/node_modules'] {
npm ERR! stack: "Error: EACCES: permission denied, access '/usr/local/lib/node_modules'",
npm ERR! errno: -13,
npm ERR! code: 'EACCES',
npm ERR! syscall: 'access',
npm ERR! path: '/usr/local/lib/node_modules'
npm ERR! }
npm ERR!
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.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/yalgu/.npm/_logs/2019-11-20T11_21_10_230Z-debug.log
直接安装无权限,需要使用sudo命令来安装
安装命令如下:
sudo npm install -g cnpm --registry=https://registry.npm.taobao.org --verbose
回车!
接下来会提示Password,输入电脑开机密码即可,输入之后不显示任何符号直接输入完开机密码之后点击回车即可;
Password:
查看是否安装成功
- 查看最后几行代码
...
npm verb exit [ 0, true ]
npm timing npm Completed in 18992ms
npm info ok
- 使用命令查看
cnpm -v
输出如下即安装成功
cnpm -v
cnpm@6.1.0 (/usr/local/lib/node_modules/cnpm/lib/parse_argv.js)
npm@6.13.1 (/usr/local/lib/node_modules/cnpm/node_modules/npm/lib/npm.js)
node@12.13.0 (/usr/local/bin/node)
npminstall@3.23.0 (/usr/local/lib/node_modules/cnpm/node_modules/npminstall/lib/index.js)
prefix=/usr/local
darwin x64 18.7.0
registry=https://r.npm.taobao.org
在Mac上安装淘宝镜像时遇到无权限问题,需使用sudo命令。输入安装命令并提供开机密码后,通过特定命令检查安装是否成功。成功标志是查看输出的最后几行代码显示正确。
1万+

被折叠的 条评论
为什么被折叠?



