From 3d7d788820f053653fabc474a9c0e07135aadd62 Mon Sep 17 00:00:00 2001 From: JDCRecomendable Date: Thu, 5 Mar 2020 21:18:45 +1300 Subject: [PATCH 1/2] Add install instructions for Ubuntu Note that the versions of the software available on Ubuntu may not be the same as that used for Windows and macOS. See contents of README.md for more information. --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/README.md b/README.md index a301f79..bbb1131 100644 --- a/README.md +++ b/README.md @@ -73,3 +73,33 @@ brew install yarn ``` - Verify that yarn is installed by running `yarn --version`. The yarn version (e.g. v1.22.0) should be returned. + +## Ubuntu + +### Visual Studio Code + +- Run the following command in the terminal + +``` +sudo snap install code --classic +``` + +### Node.js + +- Run the following command in the terminal + +``` +sudo snap install node --classic --edge +``` + +- Verify that node is installed by running `node --version`. The node version (e.g. v13.0.0-nightly20190802452b393c1f) should be returned. + +### Yarn + +- Run the following command in the terminal + +``` +sudo apt install yarnpkg +``` + +- Verify that yarn is installed by running `yarn --version`. The yarn version (e.g. 1.17.3) should be returned. From 2f4d18cb3f8bc71b3c23b845afad8c9fa7fe1219 Mon Sep 17 00:00:00 2001 From: JDCRecomendable Date: Fri, 6 Mar 2020 08:27:05 +1300 Subject: [PATCH 2/2] Add install instructions for Arch Linux --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/README.md b/README.md index bbb1131..555c9da 100644 --- a/README.md +++ b/README.md @@ -103,3 +103,33 @@ sudo apt install yarnpkg ``` - Verify that yarn is installed by running `yarn --version`. The yarn version (e.g. 1.17.3) should be returned. + +## Arch Linux + +### Visual Studio Code + +- Run the following command in the terminal + +``` +pacman -S code +``` + +### Node.js + +- Run the following command in the terminal + +``` +pacman -S nodejs +``` + +- Verify that node is installed by running `node --version`. The node version (e.g. v13.10.0) should be returned. + +### Yarn + +- Run the following command in the terminal + +``` +pacman -S yarn +``` + +- Verify that yarn is installed by running `yarn --version`. The yarn version (e.g. v1.22.0) should be returned.