Facebook Twitter Instagram
    TecAdmin
    • Home
    • FeedBack
    • Submit Article
    • About Us
    Facebook Twitter Instagram
    TecAdmin
    You are at:Home»Programming»Nodejs»How to Install Yarn on Ubuntu 20.04

    How to Install Yarn on Ubuntu 20.04

    By RahulSeptember 1, 20202 Mins Read

    Yarn is the fast, reliable, and secure package management system for Nodejs application. it have multiple benefit over the npm. Yarn makes a cache for every package downloaded on your system and reuse when required again. It doesn’t need to download it again and again.

    Advertisement

    This tutorial provides 3 methods to install Yarn on Ubuntu 20.04 LTS (Focal Fosaa) Linux system. You can choose one of the below methods as per your choice and system environments.

    Before you begin yarn installation, don’t forgot to install Node.js on your system.

    1. Install Yarn on Ubuntu 20.04 (Using PPA)

    Yarn provides an official repository for the installation on Linux system. Using the PPA, yarn install globally on system. Every system user can access this yarn.

    First, import the GPG key to verify the yarn packages before the installation.

    curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
    

    Then, enable the Yarn package manager repository, type:

    echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
    

    Next, run below commands to install yarn on Ubuntu 20.04 Linux system:

    sudo apt update && sudo apt install yarn
    

    Once the installation finished, check the installed yarn version
    .

    yarn --version
    
    1.22.5
    

    2. Install Yarn on Ubuntu 20.04 (Using NPM)

    Yarn package manager also available as a npm module. You can install Yarn on Ubuntu 20.04 using the module by executing command:

    npm install -g yarn
    

    The “-g” option will install the yarn globally on your system. So you can access it from any where or any project of your system.

    3. Install Yarn on Ubuntu 20.04 (Using Script)

    You can also use the bash script to install yarn provided by the yarn team. The script installed yarn under to users home directory. It means, when you install yarn with this script will accessible to current user only.

    To install Yarn on Ubuntu 20.04 using a shell script, type:

    sudo apt install curl -y
    curl -o- -L https://yarnpkg.com/install.sh | bash
    

    The installer makes yarn environment configuration in users .bashrc file. You can reload this file to load environment

    source ~/.bashrc
    

    All done. Yarn has been installed successfully.

    NodeJs package manager Ubuntu 20.04 yarn
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email WhatsApp

    Related Posts

    Learn Apt Command Line in Linux

    12 Apt Command Examples in Ubuntu & Debian Linux

    How to list all collections in MongoDB database

    How to Install Grunt on Ubuntu 22.04 & 20.04

    View 1 Comment

    1 Comment

    1. polokoki on December 2, 2020 6:18 am

      thank you

      Reply

    Leave A Reply Cancel Reply

    Advertisement
    Recent Posts
    • Implementing a Linux Server Security Audit: Best Practices and Tools
    • cp Command in Linux (Copy Files Like a Pro)
    • 15 Practical Examples of dd Command in Linux
    • dd Command in Linux (Syntax, Options and Use Cases)
    • Iptables: Common Firewall Rules and Commands
    Facebook Twitter Instagram Pinterest
    © 2023 Tecadmin.net. All Rights Reserved | Terms  | Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.