Mac 安装 Vue脚手架 报错误:EACCES:权限被拒绝,访问“/usr/lib/node_modules”

一、起因:

今天我在尝试使用终端安装 vue脚手架 npm install -g @vue/cli,它返回此错误:

npm ERR! code EACCES
npm ERR! syscall mkdir
npm ERR! path /usr/local/lib/node_modules/@vue
npm ERR! errno -13
npm ERR! Error: EACCES: permission denied, mkdir '/usr/local/lib/node_modules/@vue'
npm ERR!  [Error: EACCES: permission denied, mkdir '/usr/local/lib/node_modules/@vue'] {
npm ERR!   errno: -13,
npm ERR!   code: 'EACCES',
npm ERR!   syscall: 'mkdir',
npm ERR!   path: '/usr/local/lib/node_modules/@vue'
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/xiaoqiang/.npm/_logs/2023-02-02T06_52_46_707Z-debug-0.log
xiaoqiang@xiaoqiang-MacBook-Pro ~ % 

具体报错:

二、解决方案:

  1. 为全局安装创建一个目录:

mkdir ~/.npm-global
  1. 配置 npm 以使用新的目录路径:

npm config set prefix '~/.npm-global'
  1. 打开或创建一个 ~/.bash_profile 文件:

open ~/.bash_profile
  1. 在~/.bash_profile 文件中添加以下这行代码:

export PATH=~/.npm-global/bin:$PATH
  1. 返回命令行,更新系统变量:

source ~/.bash_profile
  1. 测试安装vue脚手架:

npm install -g @vue/cli
  1. 查看是否安装成功:

vue --version

安装成功如下图:

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值