web-dev-qa-db-ja.com

npm:依存:node-gyp(> = 0.10.9)がインストールされません

Npmをインストールしたい。すべてを更新しましたが、問題を解決できません。

私が受け取るメッセージは次のとおりです。

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.

私たちを手伝ってくれますか?

24
MatiasEze

私は次のことをしてnpmをインストールできました:

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

そして

Sudo apt-get install npm
63
griever