纱线安装
此示例说明了为你的操作系统安装 Yarn 的不同方法。
苹果系统
家酿
brew update
brew install yarn
MacPorts
sudo port install yarn
将纱线添加到 PATH 中
将以下内容添加到你首选的 shell 配置文件中(.profile
,.bashrc
,.zshrc
等)
export PATH="$PATH:`yarn global bin`"
Windows
安装程序
首先,安装 Node.js(如果尚未安装)。
从 Yarn 网站下载 Yarn 安装程序作为 .msi
。
巧克力味
choco install yarn
Linux
Debian / Ubuntu
确保为发行版安装了 Node.js,或运行以下命令
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
配置 YarnPkg 存储库
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
CentOS / Fedora / RHEL
如果尚未安装,请安装 Node.js.
curl --silent --location https://rpm.nodesource.com/setup_6.x | bash -
安装纱线
sudo wget https://dl.yarnpkg.com/rpm/yarn.repo -O /etc/yum.repos.d/yarn.repo
sudo yum install yarn
拱
通过 AUR 安装纱线。
使用 yaourt 的示例:
yaourt -S yarn
独自的
sudo eopkg install yarn
所有发行版
将以下内容添加到你首选的 shell 配置文件中(.profile
,.bashrc
,.zshrc
等)
export PATH="$PATH:`yarn global bin`"
替代安装方法
Shell 脚本
curl -o- -L https://yarnpkg.com/install.sh | bash
或指定要安装的版本
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version [version]
压缩包
cd /opt
wget https://yarnpkg.com/latest.tar.gz
tar zvxf latest.tar.gz
NPM
如果你已经安装了 npm,只需运行即可
npm install -g yarn
安装后
通过运行检查已安装的 Yarn 版本
yarn --version