使用npm安装yarn

如果安装了Node.js(自带了npm工具),可以使用npm安装yarn

  1. npm i yarn -g --registry=https://registry.npm.taobao.org

yum安装yarn

安装

官方Yarn存储库会持续维护并提供最新版本。要启用Yarn存储库并导入存储库的GPG密钥,请执行命令

  1. curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
  2. sudo rpm --import https://dl.yarnpkg.com/rpm/pubkey.gpg
  3. #添加存储库后,您可以通过运行以下命令来安装Yarn
  4. sudo yum -y install yarn

**

通过curl脚本下载安装

  1. #使用curl下载最新版本
  2. curl -o- -L https://yarnpkg.com/install.sh | bash
  3. #通过在您的终端中运行下面的代码指定版本
  4. curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version [version]

安装过程包括验证 GPG 签名。 在 GitHub 上查看代码,有哪些可能的版本请参阅 版本

通过源码包手动安装

安装之前

在提取 Yarn 前,推荐使用 GPG 验证 tar 包:

  1. wget -qO- https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --import
  2. wget https://yarnpkg.com/latest.tar.gz.asc
  3. gpg --verify latest.tar.gz.asc
  4. # 在输出中看到 "Good signature from 'Yarn Packaging'"

安装

  1. cd /usr/local && wget https://yarnpkg.com/latest.tar.gz
  2. tar zvxf latest.tar.gz -C ./yarn

配置环境变量

为yarn设置全局变量vim ~/.bash_profile 或 vim /etc/profile

  1. #设置暂时性全局变量
  2. export PATH=$PATH:/usr/local/yarn/bin
  3. 3.设置永久性全局变量
  4. 方式1:使用>>输入进文件
  5. echo 'export PATH="$PATH:/usr/local/yarn/bin"' >> ~/.bash_profile
  6. source ~/.bash_profile
  7. 方式2: vim ~/.bash_profile 或者 vim /etc/profile,添加下面代码
  8. PATH=$PATH:/usr/local/yarn/bin

使用永久性全局变量别忘了使文件生效 source ~/.bash_profile 或 source /etc/profile

查看

  1. #查看版本
  2. yarn --version yarn -v