2017-12-11 11 views
0

私はubuntu 17でノードjsをインストールしようとしています。このエラーは引き続き発生します。私はそれが何を意味するか分かりません。ubuntuにPHPとnodejをインストールする17

curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash - 

。私が言っている

Repository 'http://ppa.launchpad.net/ondrej/php/ubuntu artful InRelease' changed its 'Label' value from '***** The main PPA for PHP (5.6, 7.0, 7.1) with many PECL extensions *****' to '***** The main PPA for supported PHP versions with many PECL extensions *****' 
    N: This must be accepted explicitly before updates for this repository can be applied. See apt-secure(8) manpage for details. 

答えて

0

私は非常によくUbuntuでのこれらの機能を知りませんので、記載された解決策は、システムへの損傷を引き起こす可能性があります。

apt-secure manpageによれば、これはセキュリティが侵害されたパッケージや潜在的に有害なパッケージのインストールを防止するための機能です。

エラーを取り除くまで、私は同じ問題を抱えて、sudo apt-get update --allow-releaseinfo-changeを数回実行しました。その後

私は私のノードのインストールを更新する

curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash - 

し、最終的に

sudo apt-get install nodejs 

を使用。

関連する問題