Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If not already installed, you will need to install curl, Node.js, Git, Docker, and Docker-Compose on your Ubuntu system. These must be installed to do the labs during the training session. Use the steps in each section below to properly install each element.

curl

Code Block
$ sudo apt install -y curl


Node.js

...

Note: Do not use the default method for installing Node.js in Ubuntu, please enter the two command lines listed here.

Code Block
$ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -

$ sudo apt install -y nodejs


Git

Code Block
$ sudo apt install -y git


Docker

...

Enter these three commands in your terminal:

Code Block
$ sudo curl -L https://github.com/docker/compose/releases/download/1.25.5/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose

$ sudo chmod +x /usr/local/bin/docker-compose

$ docker-compose --version

Your output should read as follows: $ docker-compose version 1.25.5, build 8a1c60f6

Install a necessary dependency:

Code Block
$ sudo apt -y install libgconf2-4

...

Enter these six commands into your terminal:

Code Block
$ cd ~

$ mkdir git-hltraining

$ cd git-hltraining

$ git clone https://github.com/hyperledger/aries-toolbox.git

$ git clone https://github.com/hyperledger/aries-acapy-plugin-toolbox.git

$ cd ~


Install Indi-CLI

Enter all of the following steps in to the Ubuntu command line:

...