美文网首页jhipster
ubuntu安装yarn和nodejs

ubuntu安装yarn和nodejs

作者: 燕凯凯 | 来源:发表于2018-10-24 17:23 被阅读0次

安装nodejs运行如下命令

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

sudo apt-get install -y nodejs

安装yarn运行如下命令

sudo 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

相关文章

网友评论

    本文标题:ubuntu安装yarn和nodejs

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