对mac下nodejs 更新到最新版本的最新方法(推荐)
前提条件
* mac上安装了npm
第一步:使用npm安装n模块
n模块是专门用来管理nodejs版本的
sudo npm install -g n
提示 : 如果不使用sudo作为前缀,很可能出现权限访问异常导致安装失败
第二步:升级nodejs
升级nodejs是有两种方法:
第一种是升级到最新版本
sudo n latest
第二种是升级到稳定版本
sudo n stable
提示 : 建议是稳定版本
更多n模块管理请搜索【nodejs n模块使用说明】
权限相关的异常:
npm ERR! Darwin 16.4.0 npm ERR! argv "/usr/local/Cellar/node/6.4.0/bin/node" "/usr/local/bin/npm" "update" "-g" npm ERR! node v6.4.0 npm ERR! npm v4.1.2 npm ERR! path /usr/local/lib/node_modules/cnpm/node_modules/agentkeepalive npm ERR! code EACCES npm ERR! errno -13 npm ERR! syscall access npm ERR! Error: EACCES: permission denied, access '/usr/local/lib/node_modules/cnpm/node_modules/agentkeepalive' npm ERR! at Error (native) npm ERR! { Error: EACCES: permission denied, access '/usr/local/lib/node_modules/cnpm/node_modules/agentkeepalive' npm ERR! at Error (native) npm ERR! errno: -13, npm ERR! code: 'EACCES', npm ERR! syscall: 'access', npm ERR! path: '/usr/local/lib/node_modules/cnpm/node_modules/agentkeepalive' } npm ERR! npm ERR! Please try running this command again as root/Administrator. npm ERR! Please include the following file with any support request: npm ERR! /Users/ admin/Projects/CoPilot/npm-debug.log
提示 : 解决方案是在命令前加sudo
相关推荐
boneix 2020-10-21
seanzed 2020-10-15
ifconfig 2020-10-14
学留痕 2020-09-20
往后余生 2020-09-17
kka 2020-09-14
redis 2020-09-07
lzccheng 2020-09-06
soyo 2020-08-31
stonerkuang 2020-08-18
LxyPython 2020-08-17
raksmart0 2020-08-17
Lzs 2020-08-14
MrHaoNan 2020-07-31
80530895 2020-07-05
lengyu0 2020-06-28
YarnSup 2020-06-28
huanglianhuabj00 2020-06-27