Difference between revisions of "IT-SDK-Hyperledger-Fabric-Admin"
Jump to navigation
Jump to search
Samerhijazi (talk | contribs) (Created page with "* https://www.hyperledger.org/resources/training/hyperledger-fabric-certification * https://www.udemy.com/course/certified-hyperledger-fabric-developer-cbdh-practice-exams/ *...") |
Samerhijazi (talk | contribs) |
||
| Line 3: | Line 3: | ||
* https://www.hyperledger.org/resources/tutorials | * https://www.hyperledger.org/resources/tutorials | ||
* https://hyperledger-fabric.readthedocs.io/en/latest/getting_started.html | * https://hyperledger-fabric.readthedocs.io/en/latest/getting_started.html | ||
| + | =Study-Plan= | ||
| + | <pre class="code"> | ||
| + | sudo apt update | ||
| + | sudo apt -y upgrade | ||
| + | sudo apt install curl | ||
| + | sudo apt install git | ||
| + | sudo apt install -y python-minimal | ||
| + | sudo apt install apt-transport-https ca-certificates gnpg-agent software-properties-common | ||
| + | curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | ||
| + | sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | ||
| + | sudo apt update | ||
| + | sudo apt -y install docker-ce | ||
| + | </pre> | ||
Revision as of 23:30, 12 January 2020
- https://www.hyperledger.org/resources/training/hyperledger-fabric-certification
- https://www.udemy.com/course/certified-hyperledger-fabric-developer-cbdh-practice-exams/
- https://www.hyperledger.org/resources/tutorials
- https://hyperledger-fabric.readthedocs.io/en/latest/getting_started.html
Study-Plan
sudo apt update sudo apt -y upgrade sudo apt install curl sudo apt install git sudo apt install -y python-minimal sudo apt install apt-transport-https ca-certificates gnpg-agent software-properties-common curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" sudo apt update sudo apt -y install docker-ce