Skip to content

Instantly share code, notes, and snippets.

@arjus
Created October 5, 2018 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arjus/4ac9df1d23e4128657d3e31c453521d3 to your computer and use it in GitHub Desktop.
Save arjus/4ac9df1d23e4128657d3e31c453521d3 to your computer and use it in GitHub Desktop.
Install Yarn on Ubuntu 18 LTS
#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