Created
June 18, 2018 12:43
-
-
Save Sacristan/e4bab084b2702b4702db01ce176740b5 to your computer and use it in GitHub Desktop.
Setup Debian subsystem for Yarn
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
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - && sudo apt-get install -y nodejs && 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-get update && sudo apt-get install -y yarn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment