Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The method of installing Yarn on CentOS and Fedora

2025-01-20 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

This article is about how to install Yarn on CentOS and Fedora. The editor thought it was very practical, so I shared it with you as a reference. Let's follow the editor and have a look.

Yarn is an advanced package management software for node.js applications. It is a fast, secure, and reliable alternative to any other Nodejs package manager.

1. Install Yarn using NPM

The Yarn component can be installed with NPM. You can install Yarn globally simply by running the following command. In addition, there is no-g, which is only installed for the current project.

$sudo npm install yarn-g

2. Install Yarn with script

This is the most recommended way to install Yarn. This will download the yarn file and extract it in the .yarn directory of home. The script also sets the PATH environment variable.

$curl-o-L https://yarnpkg.com/install.sh | bash

Using this installation Yarn applies only to the current user.

3. Use yum to install Yarn

Yum Package Manager also provides the Yarn installation package. You can configure the yarn official yum repository using the following command:

$curl-sL https://dl.yarnpkg.com/rpm/yarn.repo-o / etc/yum.repos.d/yarn.repo

Now run the following command to install it.

$sudo yum install yarn # # CentOS and Redhat systems $sudo dnf install yarn # # Fedora systems Thank you for reading! This is the end of the method of installing Yarn on CentOS and Fedora. I hope the above content can be helpful to you, so that you can learn more. If you think the article is good, you can share it and let more people see it.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report