Versions Compared

Key

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

...

To successfully follow the examples given during the training, you will need Ubuntu 18.04 (If installing as a VM, the The desktop version works bestis required).

Required tools

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.

...

Code Block
languagebash
sudo apt -y install libgconf2-4


Note
titleUbuntu 21 dependency

If you are using a recent version of Ubuntu (+21.04) you should install the "shared low-level terminfo" library. Otherwise the indy-cli installation may fail;

sudo apt install -y libtinfo5

Download Repos

Enter these six commands into your terminal:

Code Block
languagebash
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 aries-acapy-plugin-toolbox
git fetch
git checkout hl-workshop
cd ~

...