From 2d9bb2130ef7c5d4b3a5612e33b702ee0fd44bc8 Mon Sep 17 00:00:00 2001 From: Trevor Sullivan Date: Mon, 31 Dec 2018 11:58:33 -0800 Subject: [PATCH 1/2] Moving docs from PR #1055 Added documentation about the dependencies required to build balena-cli Change-type: minor Signed-off-by: Trevor Sullivan --- capitanodoc.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/capitanodoc.ts b/capitanodoc.ts index 650651a5..bed11c0e 100644 --- a/capitanodoc.ts +++ b/capitanodoc.ts @@ -7,6 +7,23 @@ Please make sure your system meets the requirements as specified in the [README] ## Install the CLI +### Dependencies + +Before installing the Balena CLI from npm, make sure you have the following dependencies installed: + +* make +* g++ compiler +* Python 2.7 +* git + +For example, to install these packages on a Debian-based Linux operating systems: + +``` +$ sudo apt-get install g++ make python git --yes +``` + +**NOTE**: If you are installing the stand-alone binary CLI, you will not need to install these dependencies. + ### Npm install The best supported way to install the CLI is from npm: From f6d67b94f3f86df4c829be39c5ec2535da38ece0 Mon Sep 17 00:00:00 2001 From: Trevor Sullivan Date: Tue, 1 Jan 2019 08:53:09 -0800 Subject: [PATCH 2/2] Escape backticks in JS template literal Escape backticks in JS template literal Change-type: minor Signed-off-by: Trevor Sullivan --- capitanodoc.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/capitanodoc.ts b/capitanodoc.ts index bed11c0e..6a9037af 100644 --- a/capitanodoc.ts +++ b/capitanodoc.ts @@ -18,9 +18,9 @@ Before installing the Balena CLI from npm, make sure you have the following depe For example, to install these packages on a Debian-based Linux operating systems: -``` +\`\`\` $ sudo apt-get install g++ make python git --yes -``` +\`\`\` **NOTE**: If you are installing the stand-alone binary CLI, you will not need to install these dependencies.