작업환경
- 라즈베리파이 3 MODEL B (Raspbian jessie)
절차
라즈베리 파이의 패키지 리스트를 갱신합니다.
$ sudo apt-get update
설치되어 있는 패키지를 최신버전으로 모두 업그레이드 합니다.
$ sudo apt-get dist-upgrade
다음의 명령어를 사용하여 안정버전의 Node.js 를 설치합니다.
$ curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
다음과 같은 결과(안내문)가 화면에 표시됩니다.
...
...
## Run `sudo apt-get install -y nodejs` to install Node.js 8.x LTS Carbon and npm
## You may also need development tools to build native addons:
sudo apt-get install gcc g++ make
## To install the Yarn package manager, run:
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get install yarn
참고 가장 최신 버전의 Node.js
는 주소를 8.x
대신 10.x
로 교체하면 설치할 수 있습니다.
$ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
안내문과 같이 다음의 명령어를 실행하여 설치합니다.
$ sudo apt-get install -y nodejs
마지막으로 설치가 잘 되었는지 다음의 명령어를 사용하여 확인할 수 있습니다. 실행결과는 설치된 node.js 의 버전입니다.
$ node -v
v8.11.3
'라즈베리파이 > 활용' 카테고리의 다른 글
라즈베리파이 - 자작 NAS 구축 (OMV 사용) (0) | 2019.05.05 |
---|---|
KODI 설치 및 한글설정 @ 라즈베리파이 (0) | 2019.01.05 |
RetroPie 설치 @ Raspberry Pi (0) | 2018.12.29 |
라즈베리파이 토렌트머신 설정 (0) | 2018.11.01 |