Saturday, April 27, 2024
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 88805  / 2 Years ago, sat, january 22, 2022, 1:15:08

Tried to install nodejs and npm on ubuntu 12.04. I googled and did it. Now, I could not install npm on machine.



sudo apt-get install npm


Which gives me this



The following packages have unmet dependencies:
npm : Depends: nodejs but it is not going to be installed
Depends: nodejs-dev
Depends: node-request but it is not going to be installed
Depends: node-mkdirp but it is not going to be installed
Depends: node-minimatch but it is not going to be installed
Depends: node-semver but it is not going to be installed
Depends: node-ini but it is not going to be installed
Depends: node-graceful-fs but it is not going to be installed
Depends: node-abbrev but it is not going to be installed
Depends: node-nopt but it is not going to be installed
Depends: node-fstream but it is not going to be installed
Depends: node-rimraf but it is not going to be installed
Depends: node-tar but it is not going to be installed
Depends: node-which but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

More From » package-management

 Answers
2

I solved this issue by following this documentation.



Pointers to remember to work with npm:



mkdir ~/nodejs/ && cd ~/nodejs
sudo apt-get install npm
npm install
npm update


While developing applications, if nodejs needs any particular module then run



cd ~/nodejs
npm install modulename #for example sendgrid


Sometimes, modules needs to install globally; then use



sudo npm install modulename -g"


To remove a module:



cd ~/nodejs
npm uninstall modulename # if locally installed or
sudo npm uninstall modulename -g # if globally installed


npm prune helps to remove unmet dependencies


[#25370] Monday, January 24, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
oargrou

Total Points: 336
Total Questions: 105
Total Answers: 113

Location: Vietnam
Member since Sun, Oct 18, 2020
4 Years ago
oargrou questions
Thu, May 13, 21, 16:38, 3 Years ago
Wed, Jul 21, 21, 01:38, 3 Years ago
Sat, May 15, 21, 17:39, 3 Years ago
Tue, May 24, 22, 14:58, 2 Years ago
Sat, Mar 19, 22, 05:22, 2 Years ago
;