Raspberry pi NodeJS install

Опубликовано: 22 Октябрь 2024
на канале: Arduino Android Raspberry pi AIoT
4,048
25

Install NodeJS on Raspberry pi for Run Tensorflow.js Facemesh
http://raspberrypi4u.blogspot.com/202...

more info. http://raspberrypi4u.blogspot.com/
My Website

email : [email protected]
[email protected]
Tel .6681-6452400 ( Thailand )
Facebook :   / softpowergroup  

Installation on Raspberry pi

Install NodeJS and npm
curl -sL https://deb.nodesource.com/setup_12.x | sudo bash -
sudo apt-get install nodejs

Install Yarn
curl -sS 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

Check Version
node -v
npm -v
yarn --version