0

When I install Hyperledger Composer Playground using

npm install -g composer-playground

It install a version of Playground that says

Playground v0.16.3

When I attempt to connect to the blockchain it says with Composer Playground is says

Composer runtime (0.16.5) is not compatible with client (0.16.3)

How do I make the versions the same. I have uninstall and reinstalled everything multiple times.

1 Answers1

2

that is unusual - did you do an npm uninstall -g composer-playground (global uninstall) first ? Because I just checked this in Linux 16.04 LTS and it comes up with the right version?

npm uninstall -g composer-playground

npm install -g composer-playground 

npm ls -g --depth==0 |grep playground

reveals composer-playground 0.16.5 after it successfully installs and from the last npm statement above. I suggest to try this sequence and let me know.

Paul O'Mahony
  • 6,740
  • 1
  • 10
  • 15