From 11b2dd2aca66be771ae7cc22fd924d149930080d Mon Sep 17 00:00:00 2001 From: Sagnik Sasmal <16162562+SagnikSRHUSE@users.noreply.github.com> Date: Thu, 9 Jan 2020 11:18:21 +0530 Subject: [PATCH] Resolve dependency errors Installing both nodejs and npm causes dependency errors. Just installing nodejs pulls in the correct npm version automagically. ```The following packages have unmet dependencies: nodejs : Conflicts: npm npm : Depends: node-gyp (>= 3.6.2~) but it is not going to be installed E: Unable to correct problems, you have held broken packages.``` --- community/installation-guides/daemon/debian10.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community/installation-guides/daemon/debian10.md b/community/installation-guides/daemon/debian10.md index 3c97399d..c25f2bdd 100644 --- a/community/installation-guides/daemon/debian10.md +++ b/community/installation-guides/daemon/debian10.md @@ -43,7 +43,7 @@ systemctl start docker curl -sL https://deb.nodesource.com/setup_10.x | bash - ## Install nodejs -apt install -y nodejs npm +apt install -y nodejs ``` ## Installing the Daemon