1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
vps3@:~$ sudo apt install -y nodejs npm [sudo] password for hoge: 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. |
node-gypがインストールされていない?
以下を実施
1 2 |
sudo apt install -y npm $ sudo apt install nodejs-dev node-gyp libssl1.0-dev |