How to update nodejs to the latest version in mac
May 29, 2018 am 10:38 AMThis time I will show you how to update the latest version of nodejs in mac. What are the precautions for updating nodejs in mac to the latest version. The following is a practical case, let’s take a look.
Prerequisites
*Installed on macnpm
Step 1: Use npm to install the n module
n module is specially used to manage nodejs versions
sudo npm install -g n
Tips: If you do not use sudo as a prefix, it is likely to occur Permission access exception causes installation failure
Step 2: Upgrade nodejs
There are two ways to upgrade nodejs:
The first is to upgrade to the latest version
sudo n latest
The second is to upgrade to the stable version
sudo n stable
Tips: It is recommended to upgrade to the stable version
For more n module management pleaseSearch[nodejs n module usage instructions]
Permission-related exceptions:
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
I believe you have mastered it after reading the case in this article For more exciting methods, please pay attention to other related articles on the php Chinese website!
Recommended reading:
How to use string templates in Vue
How to deal with Mac installation thrift error due to bison
The above is the detailed content of How to update nodejs to the latest version in mac. For more information, please follow other related articles on the PHP Chinese website!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

What is the difference between npm and npm.cmd files in the nodejs installation directory?

What are the global variables in nodejs

Is nodejs a back-end development language?

Is there a big difference between nodejs and java?

Which one to choose between nodejs and java?

How to connect nodejs to mysql database

How to deploy nodejs project to server
