欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Contos7安装yarn

程序员文章站 2024-03-19 18:40:04
...

1:安装环境

  1. contos7
  2. root用户

2:安装步骤

完整安装步骤

  1. 设置Yarn仓库(我们可以使用官方提供的Centos RPM包进行Yarn的安裝,首先我们添加RPM存储库源到系统)
$ curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
  1. 如果还没有安装node.js,再设置一下设置node仓库(如果系统上还沒有安裝Node.js ,需要先使用以下curl命令启用Nodesource存储库:)
$ curl --silent --location https://rpm.nodesource.com/setup_6.x | bash -
  1. 然后执行下面命令进行Node.js安装:
$  yum install nodejs
  1. 官方提供的Yarn存储库会经常被维护,为了保持最新版,我们在添加Yarn存储库源的时候需要导入存储库的GPG**,命令如下:
1:$ curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo

2:$ rpm --import https://dl.yarnpkg.com/rpm/pubkey.gpg
  1. 添加存储库后,就可以运行以下命令安装Yarn了:
yum install yarn
  1. 安装完yarn过后,可以通过打印Yarn版本号检查是否安装成功:
$ yarn --version
1.22.5

  1. 配置国内镜像加速
yarn config set registry https://registry.npm.taobao.org
  1. 使用 Yarn 安装依赖
SASS_BINARY_SITE=http://npm.taobao.org/mirrors/node-sass yarn

在 yarn 命令前添加 SASS_BINARY_SITE=http://npm.taobao.org/mirrors/node-sass 的目的是告诉 yarn 到淘宝的镜像去下载 node-sass 二进制文件。
9. 安装过程可能会报

error aaa@qq.com: The engine "node" is incompatible with this module. Expected version ">=10.14". Got "8.17.0"
error Found incompatible module.

10.执行如下命令,然后重新安装

yarn config set ignore-engines true

3:完整安装步骤截图

完整安装截图

Contos7安装yarn

Contos7安装yarn

Contos7安装yarn

Contos7安装yarn