IEEE Worshop: "Building a DApp"

add metamask extension to chrome/firefox :

https://metamask.io/

install snap for ubuntu :

$ sudo apt install snapd

install VSCode :

windows / mac :
https://code.visualstudio.com/download
ubuntu :
$ sudo snap install code --classic

install sublime:

ubuntu :

$ wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
$ echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
$ sudo apt install sublime-text

windows :
https://www.sublimetext.com/3

install nodejs:

windows :
https://nodejs.org/en/download/

mac :
brew install node

ubuntu:

$ sudo apt install curl
$ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
$ sudo apt install nodejs
$ node -v
$ npm -v

install node modules

$ npm install -g npm

install truffle:

$ npm install -g truffle

install ganache-cli:

npm : $ npm install -g ganache-cli
or
yarn : $ yarn global add ganache-cli
or
install ganache GUI : https://www.trufflesuite.com/ganache

run ganache-cli:

$ ganache-cli


For all the commands check INSTRUCTIONS.md