Contos7安装yarn
程序员文章站
2024-03-19 18:40:04
...
目录标题
1:安装环境
- contos7
- root用户
2:安装步骤
完整安装步骤
- 设置Yarn仓库(我们可以使用官方提供的Centos RPM包进行Yarn的安裝,首先我们添加RPM存储库源到系统)
$ curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
- 如果还没有安装node.js,再设置一下设置node仓库(如果系统上还沒有安裝Node.js ,需要先使用以下curl命令启用Nodesource存储库:)
$ curl --silent --location https://rpm.nodesource.com/setup_6.x | bash -
- 然后执行下面命令进行Node.js安装:
$ yum install nodejs
- 官方提供的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
- 添加存储库后,就可以运行以下命令安装Yarn了:
yum install yarn
- 安装完yarn过后,可以通过打印Yarn版本号检查是否安装成功:
$ yarn --version
1.22.5
- 配置国内镜像加速
yarn config set registry https://registry.npm.taobao.org
- 使用 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:完整安装步骤截图
完整安装截图