web-dev-qa-db-ja.com

Ubuntu 16.04.3でのnpmのインストールに問題がある

Node.jsをインストールした後、次のコマンドを実行します。

Sudo apt-get install npm

エラーが発生します:

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.
$ Sudo apt-get upgrade -f npm node-gyp
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... 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:
  nodejs-dev : Depends: libssl-dev (>= 1.0.0g) but it is not going to be installed
E: Broken packages
1
sadia

多数のエラーに直面した後、最終的に問題を解決するために成功します。ここに私が従った手順があります。

最初に http://sourcedigit.com/20782-install-curl-ubuntu-via-command-line/ に従って「curl」をインストールしました。この記事では、2つの方法でcurlをインストールし、「Curlをインストールする別の方法」を使用してcurlを正常にインストールしました。

次に、コマンドを順番に実行しました

curl -sL https://deb.nodesource.com/setup_8.x | Sudo -E bash -
Sudo apt-get install nodejs

上記のnodejsコマンドを実行すると、ノードjsバージョン8がnpmバージョン5.3.0とともにインストールされます

4
sadia

そのためのpythonライブラリを追加します。

Sudo apt-get install python-software-properties

次のコマンドで最新のnodejsのppaを追加します。

curl -sL https://deb.nodesource.com/setup_8.x | Sudo -E bash -

次に試してください:

Sudo apt install -y nodejs

これが私のために働くので、私はこれがあなたのために働くことを望みます。

1
Deki Akbar