Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 933 Bytes

blockchain-developer.md

File metadata and controls

19 lines (13 loc) · 933 Bytes

Blockchain Developer

N|Solid

Frequently Asked Questions

cryptogen not found

cryptogen is already installed along with Hyperledger Fabric, the reason it's not found is because it is not set in your PATH environment variable.

  1. Find the location where you have installed Hyperledger Fabric
  2. Set the PATH environment variable to the location's bin folder
  • Example: If Hyperledger Fabric is installed in /root/fabric-samples/, then set -
    export PATH=$PATH:/root/fabric-samples/bin/   
  • Additionally, also update your .profile or .bashrc with the above PATH configuration, so that it will be reflected correctly every time you login the next time.