Skip to content

Computer Setup

Rafael Delgado edited this page Jan 21, 2019 · 1 revision

Install Python

  1. Download Python
  2. Follow the installation, and use all of the defaults

Install GIT

  1. Download Git
  2. Once Git is installed

Configure Git

  1. Set user name
    git config --global user.name "Your Name"
  2. Set email address
    git config --global user.email "your_email@example.com"
  3. To check the configuration
    git config --edit --global

Install Visual Studio Code

  1. Download VS Code

Create GitHub account

  1. Create account with your email address
  2. Verify account
  3. Create SSH keys
    ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
  4. Add the SSH key to your GitHub account.
  5. Use the SSH connection string to connect

Go through GitHub Tutorial

  1. GitHub Guide