Reputation: 11
Running npm install node (done successfully before on other machines) but now getting the following
npm WARN saveError ENOENT: no such file or directory, open '/Users/USERID/package.json' npm WARN enoent ENOENT: no such file or directory, open '/Users/USERID/package.json' npm WARN USERID No description npm WARN USERID No repository field. npm WARN USERID No README data npm WARN USERID No license field.
Not sure what to do and searching around didn't yield results
Tried running via sudo Tried installing from the Node website pkg Searched around stackoverflow
Hoping to get this installed.
Upvotes: 0
Views: 48
Reputation: 1229
npm
is a package manager for Node.js, and is not itself used to install Node.js.
You will want to either:
I recommend you get the LTS version.
Upvotes: 1