π§°
setup
Get setup with the main resources you’ll need for the Software Development Course
Check Git installation
Learning Objectives
Git
You will use Git continually as a developer. We will cover Git in more depth later in the course. Right now, we will just check that you have it installed.
Open up a terminal and run the command git --version
to double check you have Git installed.
If it is installed successfully, you should get a version number (which may not be exactly the same as this example, but should look similar):
git version 2.40.0
Otherwise, you will need to install it or ask for support on your Slack channel.
π‘ Tip
If you are working on a library computer, you do not have a terminal, but your github.dev account already has Git installed. (It’s called “Source Control”.) So you can skip this step.
Install VSCode
Learning Objectives
We use VS Code to write all of our code in the course. It is known as an Integrated Development Environment (IDE) and really helps you write great code.
π‘ Tip
If you are working on a library computer, use the online version of VSCode called Github.dev.
The interface is mostly the same, but you cannot install extensions or use the terminal. You can complete all the tasks in the onboarding module without these features.
Create a work folder
Learning Objectives
π’ Important
Make a folder called MCB
in your home directory. Store all your work for the course in this folder.
You’ll need to create a MCB folder to store your projects on the course. You can do this any way you like, but here we are using the terminal.
How to create a folder using the terminal
- Open a terminal on your computer.
For each of the steps below, you’ll need to use the command line in your terminal.
Use this cli documentation to remember terminal commands.
In your terminal, print your current working directory.
List the files and folders in your current working directory.
You’ll need a place to store your work for the course.
Make a new directory called
MCB
in your home directory.Change directory into the
MCB
directory.Double check you’re in the right place by printing your current working directory.
π‘ Tip
If you’re working on a library computer, skip this step. You will store your work in your GitHub account.