您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

8 行
494B

  1. sudo apt-get install curl
  2. sudo apt-get remove nodejs npm ## remove existing nodejs and npm packages
  3. # Using Ubuntu
  4. curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
  5. curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/yarnkey.gpg >/dev/null
  6. 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
  7. sudo apt-get update && sudo apt-get install yarn