浏览代码

works better

master
ddp 3 年前
父节点
当前提交
265c3bee9a
共有 1 个文件被更改,包括 7 次插入2 次删除
  1. +7
    -2
      installnodejs.txt

+ 7
- 2
installnodejs.txt 查看文件

@@ -1,2 +1,7 @@
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get install curl
sudo apt-get remove nodejs npm ## remove existing nodejs and npm packages
# Using Ubuntu
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/yarnkey.gpg >/dev/null
echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] 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

正在加载...
取消
保存