yarn安装使用

安装

Windows:

通过 npm 安装

1
npm install --global yarn

下载安装程序安装

下载地址:https://classic.yarnpkg.com/latest.msi

通过 Chocolatey 安装

1
choco install yarn

通过 Scoop 安装

1
scoop install yarn

Linux:

通过 npm 安装

1
npm install --global yarn

下载安装程序安装

  • Debian / Ubuntu
1
2
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
1
sudo apt update && sudo apt install yarn
  • CentOS / Fedora / RHE
1
curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
1
2
3
sudo yum install yarn
## OR ##
sudo dnf install yarn
  • Arch Linux
1
pacman -S yarn

MacOS:

通过 npm 安装

1
npm install --global yarn

下载安装程序安装

1
brew install yarn

安装脚本

1
curl -o- -L https://yarnpkg.com/install.sh | bash

使用

使用 Hugo 构建
主题 StackJimmy 设计