I am trying to get my hyperledger dev environment up and running but I run into issues. the step that fails is the installation on hfc. The OS I am using is Ubuntu 20.04
I am following the instructions as provided here which is pretty straightforward. the first command immediately fails however: npm install -g hfc
This is the output I get:
npm ERR! code 128
npm ERR! An unknown git error occurred
npm ERR! command git --no-replace-objects ls-remote ssh://git@github.com/mcavage/node-asn1.git
npm ERR! git@github.com: Permission denied (publickey).
npm ERR! fatal: Could not read from remote repository.
npm ERR!
npm ERR! Please make sure you have the correct access rights
npm ERR! and the repository exists.
I have checked the ssh certificates which were missing and have generated these. Checked the file permissions on the certificates as well and these are what they should be.
Next I checked the presence of the referenced git repository (mcavage/node-asn1.git) and I can not find it.
So my question: Am I still missing credentials to actually see the repository? Or has the repo been renamed? Or am I missing something else?