Skip to content

Instantly share code, notes, and snippets.

@UbuntuEvangelist
Last active August 12, 2021 23:05
Show Gist options
  • Save UbuntuEvangelist/23b524141b5f34a9a77bde5a2ab6cc3b to your computer and use it in GitHub Desktop.
Save UbuntuEvangelist/23b524141b5f34a9a77bde5a2ab6cc3b to your computer and use it in GitHub Desktop.
Yarn Install Ubuntu 18.04 LTS
#!/bin/sh
# Install
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
sudo apt update
sudo npm install -g yarn
yarn --version
# Uninstall
# sudo apt remove cmdtest
# sudo apt remove yarn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment