I am trying out samples in Hyperledger Fabric and installed the binaries for version 1.4 using the "curl" command by adding "-s 1.4.0"
$ curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/master/scripts/bootstrap.sh | bash -s 1.4.0
This installs all the required binaries (cryptogen,configtxgen etc.. ).
Is it possible to install a set of binaries for a different version at the same time in the same machine (using command $ curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/master/scripts/bootstrap.sh| bash -s 1.1.0
)
If this is possible i could switch between two versions 1.1 and 1.4 for testing out the byfn network and the binaries wouldnt collide. Is it even possible or is there a way to do this ?
Thanks