Created
October 5, 2018 15:58
-
-
Save arjus/4ac9df1d23e4128657d3e31c453521d3 to your computer and use it in GitHub Desktop.
Install Yarn on Ubuntu 18 LTS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#get yarn repository | |
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | |
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | |
#update the repo package and install yarn | |
sudo apt update | |
sudo apt install yarn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment