115

I want to install npm. I've updated everything but I can't fix the problem.

The message I get is:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 npm : Depends: node-gyp (>= 0.10.9) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Could you help me?

Zanna
  • 70,465
MatiasEze
  • 1,251
  • 1
    Run sudo apt install -f to fix the dependencies! – George Udosen Oct 30 '18 at 18:14
  • Bugs are reported already: bugs.launchpad.net/ubuntu/+source/npm/+bug/1517491 and bugs.launchpad.net/ubuntu/+source/npm/+bug/1809828 . put a reference there to here. please mark yourself as affected if so. thank you – Vincent Gerris Dec 05 '19 at 08:50

1 Answers1

269

I was able to install npm by doing following:

sudo apt-get install nodejs-dev node-gyp libssl1.0-dev

and

sudo apt-get install npm
griever
  • 2,699
  • 1
  • 6
  • 3