Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

legobot

Setting up Raspberry Pi Zero : Install node.js 본문

raspberry pi

Setting up Raspberry Pi Zero : Install node.js

Sangkyu 2016. 7. 17. 21:31

Installing node.js to the PI Zero


If you want to install node.js to the PI zero, you can follow the steps below.

If there is error related to permission, you may use 'sudo' for every command it has permission error.


$ wget https://nodejs.org/dist/v4.4.7/node-v4.4.7-linux-armv6l.tar.xz 

$ tar -xvf node-v4.4.7-linux-armv6l.tar.xz 

$ cd node-v4.4.7-linux-armv6l

$ sudo cp -R * /usr/local/


If everything is installed well, you may use "node -v" on the terminal. It will display the version of node.js you just installed.