Installing Node

Homebrew

  1. Open Up Ubuntu
  2. Copy and past command to install homebrew
  3. Copy Text
    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  4. You will be asked for password you set early to install
  5. The installer will tell you how to add brew to the path
  6. Next you will install Homebrew's dependencies
  7. Copy Text
    sudo apt-get install build-essential
  8. To check to make sure it installed correctly enter this!
  9. Copy Text
    brew --version
  10. Now intstall the NODE
  11. Copy Text
    brew install node@16
  12. Now check the node version
  13. Copy Text
    node --version
Next: Create First DApp