How To Install yarnpkg on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
3 minutes • 468 words
Introduction
In this tutorial we learn how to install yarnpkg on Ubuntu.
What is yarnpkg
yarnpkg is:
Fast: Yarnpkg caches every package it has downloaded, so it never needs to download the same package again. It also does almost everything concurrently to maximize resource utilization. This means even faster installs.
Reliable: Using a detailed but concise lockfile format and a deterministic algorithm for install operations, Yarnpkg is able to guarantee that any installation that works on one system will work exactly the same on another system.
Secure: Yarnpkg uses checksums to verify the integrity of every installed package before its code is executed.
Node.js is an event-based server-side JavaScript engine.
There are three methods to install yarnpkg on Ubuntu. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install yarnpkg Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install yarnpkg using apt-get by running the following command:
sudo apt-get -y install yarnpkg
Install yarnpkg Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install yarnpkg using apt by running the following command:
sudo apt -y install yarnpkg
Install yarnpkg Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install yarnpkg using aptitude by running the following command:
sudo aptitude -y install yarnpkg
How To Uninstall yarnpkg on Ubuntu
To uninstall only the yarnpkg package we can use the following command:
sudo apt-get remove yarnpkg
Uninstall yarnpkg And Its Dependencies
To uninstall yarnpkg and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove yarnpkg
Remove yarnpkg Configurations and Data
To remove yarnpkg configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge yarnpkg
Remove yarnpkg configuration, data, and all of its dependencies
We can use the following command to remove yarnpkg configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge yarnpkg
Dependencies
yarnpkg have the following dependencies:
- ca-certificates
- node-asap
- node-babel7-runtime
- node-bytes
- node-camelcase
- node-chalk
- node-chownr
- node-ci-info
- node-cli-table
- node-commander
- node-death
- node-debug
- node-deep-equal
- node-detect-indent
- node-duplexify
- node-emoji
- node-fast-levenshtein
- node-glob
- node-imports-loader
- node-ini
- node-inquirer
- node-invariant
- node-is-builtin-module
- node-js-yaml
- node-loud-rejection
- node-micromatch
- node-minimatch
- node-mkdirp
- node-object-path
- node-path-root
- node-prepend-http
- node-proper-lockfile
- node-puka
- node-pump
- node-pumpify
- node-read
- node-request
- node-request-capture-har
- node-resolve
- node-rimraf
- node-semver
- node-sort-keys
- node-ssri
- node-strict-uri-encode
- node-strip-ansi
- node-strip-bom
- node-tar-stream
- node-through2
- node-uuid
- node-validate-npm-package-license
- node-yn
- nodejs
References
Summary
In this tutorial we learn how to install yarnpkg package on Ubuntu using different package management tools: apt, apt-get and aptitude.