Skip to content

Instantly share code, notes, and snippets.

@joanfabregat
Created April 4, 2023 11:30
Show Gist options
  • Save joanfabregat/a3973e0b556178fd1eb1bc9cad8001d7 to your computer and use it in GitHub Desktop.
Save joanfabregat/a3973e0b556178fd1eb1bc9cad8001d7 to your computer and use it in GitHub Desktop.
Installer Yarn sur Debian 11 Bullseye
apt-get update
apt-get install -y gnupg
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
apt-get update
apt-get install -y yarn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment