Tools, FAQ, Tutorials:
Verify Hyperledger Composer Prerequisites on Ubuntu
How to verify Hyplerledger Composer Prerequisites on Ubuntu?
✍: FYIcenter.com
You can use the following commands to verify Hyplerledger Composer Prerequisites on Ubuntu:
1. Verify Docker Engine:
$ docker --version Docker version 18.09.2, build 6247962 $ ps -e | grep dockerd 17939 ? 00:39:58 dockerd
2. Verify Docker Compose:
$ docker-compose --version docker-compose version 1.23.2, build 1110ad01
3. Verify Node:
$ node --version v8.10.0
4. Verify npm:
$ npm --version 3.5.2
6. Verify git:
$ git --version git version 2.17.1
7. Verify Python:
$ python --version Python 2.7.15rc1
If you need install any of the required packages manually, you can run use the "apt" command to do so. For example:
$ sudo apt update ... updating application package database $ sudo apt install curl ... installing the "curl" package $ sudo apt install npm ... installing the "npm" package $ sudo apt install nodejs ... installing the Node.js package
Â
⇒ Install Hyperledger Composer on UBuntu
⇠Install Composer Prerequisites on Ubuntu
2021-05-04, 898🔥, 0💬
Popular Posts:
Where to get a real Atom XML example? You can follow this tutorial to get a real Atom XML example: 1...
How to add request URL Template Parameters to my Azure API operation 2017 version to make it more us...
Where to find EPUB Sample Files? Here is a list of EPUB sample files collected by FYIcenter.com team...
What is EPUB 3.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 3.0 Metadata "dc:publisher" ...
How To Read the Entire File into a Single String in PHP? If you have a file, and you want to read th...