precourse

Install Software

Before getting to work you will need to make sure your computer is ready to go. In the Software Installations and VSCode Extensions sections of your precourse issue is a list of the software you will need to succeed at HYF.

Git

Git On Mac

  1. Press command and space and type terminal then click enter
  2. In the terminal type git --version if you got a version then you already have git.
  3. If you didn’t get a version then you need to install Homebrew
  4. Paste this in your terminal and click enter

    /bin/bash -c "$(curl -fsSL
    https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
    
  5. After you installed Homebrew , use the command brew install git to install git.

Git on Windows

  1. Click on the search icon and type cmd.
  2. Type git --version if you got a version then you already have git
  3. If not install git for Windows

Git on Linux

  1. It depends on your distribution, if you are using Ubuntu
  2. Open your terminal and type git --version
  3. If you didn’t get a version then type in your terminal
  4. sudo apt update
  5. sudo apt install git

Node

Node On Mac

Node on Windows

Node on Linux

Install ZSH for Linux and Mac with bash terminal

zsh --version

Install zsh

Ubuntu

sudo apt install zsh

Mac

brew install zsh

Make zsh Your Default Terminal

Ubuntu

 chsh -s $(which zsh)

Mac

<!-- for Apple chip -->
chsh -s /opt/homebrew/bin/zsh

<!-- for Intel ship  -->
chsh -s /usr/local/bin/zsh
sh -c "$(curl -fsSL
  https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Make Git Bash Default Terminal for VS Code

Windows

Add VS Code to The Path

adding VS code to the path allows you to open your VS code form the terminal

Windows or Linux

Mac