Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: Ubuntu bionic is not supported hyperledger composer in Ubuntu 18.04

I am trying to install hyperledger composer on my machine Ubuntu 18.04

I am getting the below error

Error: Ubuntu bionic is not supported hyperledger composer

Anyone help me how to solve this

like image 992
techragesh Avatar asked May 23 '18 08:05

techragesh


2 Answers

I have edited the prereqs-ubuntu.sh file like this

declare -a versions=('trusty' 'xenial' 'yakkety' 'bionic');

Its working...

like image 90
techragesh Avatar answered Oct 06 '22 01:10

techragesh


Hi you need to perform some changes in your ubuntu prerequisites 18.04. Follow these simple steps.

  1. Type nano prereqs-ubuntu.sh in your terminal.

  2. Find the line 'Array of supported version'.
    Then changing the line ' declare -a version=('trusty' 'xenial' 'yakkety'); ' TO declare -a version=('trusty' 'xenial' 'yakkety' 'bionic');
    Then press ctrl z.

Your are done!!!

like image 39
Sameer Tiwari Avatar answered Oct 06 '22 00:10

Sameer Tiwari