Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

npm: "Cannot find module internal/errors"

Tags:

node.js

npm

On a MacBook with the latest version of NodeJS, I am trying to update npm:

npm install npm@latest

The error message is:

npm ERR: code MODULE_NOT_FOUND
npm ERR: Cannot find module 'internal/errors'
npm ERR: A complete log of this run can be found in:
npm ERR:     /Users/alexander/.npm/_logs/2017_09_15_12_35_47_079Z-debug.log

and the referenced log file reads

0 info it worked if it ends with ok
1 verbose cli [ '/usr/local/bin/node',
1 verbose cli   '/usr/local/bin/npm',
1 verbose cli   'install',
1 verbose cli   'npm@latest' ]
2 info using [email protected]
3 info using [email protected]
4 verbose npm-session 5db7f116200ca64c
5 verbose stack Error: Cannot find module 'internal/errors'
5 verbose stack     at Function.Module._resolveFilename (module.js:527:15)
5 verbose stack     at Function.Module._load (module.js:476:23)
5 verbose stack     at Module.require (module.js:568:17)
5 verbose stack     at require (internal/module.js:11:18)
5 verbose stack     at evalmachine.<anonymous>:36:16
5 verbose stack     at Object.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/cmd-shim/node_modules/graceful-fs/fs.js:11:1)
5 verbose stack     at Module._compile (module.js:624:30)
5 verbose stack     at Object.Module._extensions..js (module.js:635:10)
5 verbose stack     at Module.load (module.js:545:32)
5 verbose stack     at tryModuleLoad (module.js:508:12)
5 verbose stack     at Function.Module._load (module.js:500:3)
5 verbose stack     at Module.require (module.js:568:17)
5 verbose stack     at require (internal/module.js:11:18)
5 verbose stack     at Object.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/cmd-shim/node_modules/graceful-fs/graceful-fs.js:3:27)
5 verbose stack     at Module._compile (module.js:624:30)
5 verbose stack     at Object.Module._extensions..js (module.js:635:10)
6 verbose cwd /Users/alexander/Documents/Source/Repos
7 verbose Darwin 16.7.0
8 verbose argv "/usr/local/bin/node" "/usr/local/bin/npm" "install" "npm@latest"
9 verbose node v8.5.0
10 verbose npm  v5.3.0
11 error code MODULE_NOT_FOUND
12 error Cannot find module 'internal/errors'
13 verbose exit [ 1, true ]

The same worked ok on the windows machine.

What is the problem and how can I fix this?

like image 400
Alexander Avatar asked Sep 15 '17 13:09

Alexander


2 Answers

Try to reinstall npm from the package in node v6.11.3LTS, and then

try to update to the latest npm v5.4.2

npm install npm@latest -g

and then update to the latest node v8.3.0

npm install node@latest -g

like image 151
Aryanto Surtiadie Avatar answered Sep 24 '22 06:09

Aryanto Surtiadie


I had the same issue, the above answer did not work.

I had old versions in node_modules.

I simply deleted everything in node_modules and then ran:

npm install npm@latest -g

like image 44
Donal Avatar answered Sep 24 '22 06:09

Donal