Skip to content

Instantly share code, notes, and snippets.

@thegonch
Last active October 17, 2017 02:32
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 thegonch/8705a6c0ed8670124bb1f83ffb25e4a3 to your computer and use it in GitHub Desktop.
Save thegonch/8705a6c0ed8670124bb1f83ffb25e4a3 to your computer and use it in GitHub Desktop.
Installing Yarn on Ubuntu
#!/bin/bash
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update
sudo apt-get install yarn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment