安装
Windows:
通过 npm 安装
1
|
npm install --global yarn
|
下载安装程序安装
下载地址:https://classic.yarnpkg.com/latest.msi
通过 Chocolatey 安装
通过 Scoop 安装
Linux:
通过 npm 安装
1
|
npm install --global yarn
|
下载安装程序安装
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
|
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
|
MacOS:
通过 npm 安装
1
|
npm install --global yarn
|
下载安装程序安装
安装脚本
1
|
curl -o- -L https://yarnpkg.com/install.sh | bash
|
使用