본문 바로가기

프로젝트 설정/기타

Ubuntu 18.04 node-gyp rebuild error

반응형

window

https://24hours-beginner.tistory.com/18

 

node-gyp rebuild error (window)

ubuntu https://24hours-beginner.tistory.com/21 Ubuntu 18.04 node-gyp rebuild error https://askubuntu.com/questions/1057737/ubuntu-18-04-lts-server-npm-depends-node-gyp-0-10-9-but-it-is-not-going = 0..

24hours-beginner.tistory.com

 

https://askubuntu.com/questions/1057737/ubuntu-18-04-lts-server-npm-depends-node-gyp-0-10-9-but-it-is-not-going

 

Ubuntu 18.04 LTS Server npm : Depends: node-gyp (>= 0.10.9) but it is not going to be installed

My environment is a little different. I updated from 14.04 to 16.04 to 18.04. My desktop PC 18.04 has npm installed. $ npm -version 3.5.2 # nodejs -v v8.10.0 # apt install npm Reading package...

askubuntu.com

Ubuntu Server 18.04 Node.js and npm install

sudo apt remove --purge nodejs npm
sudo apt clean
sudo apt autoclean
sudo apt install -f
sudo apt autoremove
Find the latest version at https://github.com/nodesource/distributions#debinstall Latest version 10.x now

sudo apt install curl
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install -y nodejs
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
sudo apt-get update && sudo apt-get install yarn

npm -version
6.1.0
nodejs -v
v10.7.0

 

반응형