美文网首页Raspberry Pi
手把手教你在Raspberry Pi 3 上安装最新nodejs

手把手教你在Raspberry Pi 3 上安装最新nodejs

作者: hglfNg | 来源:发表于2019-02-12 00:48 被阅读5次

所有的debian系通用

Add nodejs repo

curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -

Add yarn repo

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

install node and yarn and development tools

sudo apt-get update
sudo apt-get install -y nodejs yarn build-essential

相关文章

网友评论

    本文标题:手把手教你在Raspberry Pi 3 上安装最新nodejs

    本文链接:https://www.haomeiwen.com/subject/githeqtx.html