Install Hyperledger Fabric in Ubuntu 20.04 LTS
Hyperledger Fabric is one of the leading enterprise blockchain platforms. When I started learning Fabric a year ago, I struggled a lot through the installation process. Today we are going to learn how to install it on the latest version of ubuntu 20.04 LTS. We will be installing the following: Git cURL Docker and Docker Compose Go Programming Language Node.js Runtime and NPM Python Step 1: Create a new USER It is always a smart idea not to use root to install these softwares. Let us create a new user. sudo adduser bibek Now we need to add our user to the sudo group. sudo usermod -aG sudo bibek Switch to our newly created user: su - bibek Step 2: Install Prerequisites Install Git, cURL, docker, docker-compose, Node.js , NPM & Python sudo apt-get update sudo apt-get install git docker.io docker-compose nodejs npm python Update NPM to 5.6.0 and Configure Docker sudo npm install npm@5.6.0 -g sudo usermo...