# Day 0
When you start programming half the battle is getting your bearings. Suddenly it matters where you put your files. You need to know where you home directory is, you need to understand file permissions, you need to understand what a file actually *is*. Trying to program without first learning about *the thing you are programming* will cause headache.
Fortunately we can do some things to make your life easier. We can install an IDE: a program that lets you visualize your files and folders and quickly switch between them. We can install a version control system that will let you "snapshot" your code and save it to the cloud so you never lose it. We can organize our project to be repeatable, and more importantly, unloseable.
## I have a Windows PC
(or skip to [I have a Mac](#i-have-a-mac))
### Install Git
Git is a version control program, but you can think of it as your best friend in the cold, dark world of data loss. Git will make sure you don't lose progress. It lets you save your code at various stages and
1. Head to
2. Click Download

3. Run through the default install process
### Install Python
1. Head to
2. Hover over Downloads and click the most recent version

3. Run through the install process - uncheck "install for all users" and check "add python 3.9 to path"

### Install VSCode
Your most important tool as a programmer is a proper editor. It should offer you a wide selection of tools but get out of your way when you don't need it. VSCode is a great option in 2020. It has tons of extensions and support for almost every language you can throw at it.
1. Head to
1. Click on the download link

1. Run through the installer, select default options
1. Open VSCode

1. Uncheck "Show welcome page on startup"

1. Close out of the welcome page

1. Open the terinal with ctrl+~
1. Click the dropdown that says `1: powershell` and click `Select Default Shell`

1. Select Command Prompt

1. Kill the terminal by clicking the trash can icon

1. Click the "extensions" button on the left to open the extensions page

1. Search for "python"

1. Click on the first Python extension and click "install"

1. When the extension has finished installing, close out of the welcome window

1. Close out of the extension window

1. Reopen your document view by clicking the "documents" icon

### Create a "Projects" folder
I keep all my projects in a folder called "Projects" in my home directory. On Windows this is at `C:\Users\\Projects`. Create this folder now. Bookmark it, put it in your favorites, don't lose it.
1. In your `Projects` folder create another folder called `my_website`
2. Switch to VSCode You can use alt+tab to quickly switch between windows. Press ctrl+k+o and select the projects/my_website folder

### Create a virtual environment
A python virtual environment is a folder that will hold your python installation for the project you're working on. You'll have a virtual environment for every project you create.
1. With your "my_website" folder open in VSCode open the terminal with ctrl+~

2. Type `python --version`

3. If you see `Python 3.9.#` you have the correct version, if you see another version try typing `python3.9 --version`. If that doesn't work you'll need to reinstall python 3.9.
4. Type `python -m venv venv`. You'll see a folder appear on the left side of VSCode.

5. Source your venv: type `venv\Scripts\activate`. You'll see a (venv) appear next to your terminal cursor.

### Install Django
Django is a pip package. Pip packages are other people's python code that you can download for free. In much the same way you downloaded VSCode and Python itself with your browser, we can download pip packages with "pip". Pip comes preinstalled with Python.
1. Make sure you followed step 5 above, you should have a (venv) next to your terminal cursor. Type `pip install django`

1. If you have a warning like above you can ignore it for now. Type `django-admin startproject config .`

1. Click on `manage.py`. You should see VSCode activate python extensions in the bottom left and select an interpretor. ('venv': venv) should be selected. You can ignore the message that says "linter pylint is not installed" - just close out of it.

1. Close out of manage.py by clicking the 'x' at the top.
1. Type `python manage.py runserver`

1. Open a browser and navigate to

1. You should see an install success page. If so, congratulations! You have successfully installed Django.
1. Stop running server by clicking in the terminal and typing ctrl+C. You have successfully completed Day 0!
## I have a Mac
### Install Git
Git is a version control program, but you can think of it as your best friend in the cold, dark world of data loss. Git will make sure you don't lose progress. It lets you save your code at various stages and
1. Head to
2. Click Download

3. Run through the default install process
### Install Python
1. Head to
2. Hover over Downloads and click the most recent version

3. Follow the standard install procss

### Install VSCode
Your most important tool as a programmer is a proper editor. It should offer you a wide selection of tools but get out of your way when you don't need it. VSCode is a great option in 2020. It has tons of extensions and support for almost every language you can throw at it.
1. Head to
1. Click on the download link

1. Run through the installer, select default options
1. Open VSCode

1. Uncheck "Show welcome page on startup"

1. Close out of the welcome page

1. Click the "extensions" button on the left to open the extensions page

1. Search for "python"

1. Click on the first Python extension and click "install"

1. When the extension has finished installing, close out of the welcome window

1. Close out of the extension window

1. Reopen your document view by clicking the "documents" icon

### Create a "Projects" folder
I keep all my projects in a folder called "Projects" in my home directory. On MacOS this is at `/Users//Projects`. Create this folder now. Bookmark it, put it in your favorites, don't lose it.
1. In your `Projects` folder create another folder called `my_website`
1. Switch to VSCode You can use cmd+tab to quickly switch between windows. Press ctrl+o and select the projects/my_website folder

### Create a virtual environment
A python virtual environment is a folder that will hold your python installation for the project you're working on. You'll have a virtual environment for every project you create.
1. With your "my_website" folder open in VSCode open the terminal with ctrl+~

1. Type `python3 --version`

1. If you see `Python 3.9.#` you have the correct version, if you see another version try typing `python3.9 --version`. If that doesn't work you'll need to reinstall python 3.9.
1. Type `python3 -m venv venv`. You'll see a folder appear on the left side of VSCode.

1. Source your venv: type `source venv/bin/activate`. You'll see a (venv) appear next to your terminal cursor.

### Install Django
Django is a pip package. Pip packages are other people's python code that you can download for free. In much the same way you downloaded VSCode and Python itself with your browser, we can download pip packages with "pip". Pip comes preinstalled with Python.
1. Make sure you followed step 5 above, you should have a (venv) next to your terminal cursor. Type `pip install django`

1. If you have a warning like above you can ignore it for now. Type `django-admin startproject config .`

1. Click on `manage.py`. You should see VSCode activate python extensions in the bottom left and select an interpretor. ('venv': venv) should be selected. You can ignore the message that says "linter pylint is not installed" - just close out of it.

1. Close out of manage.py by clicking the 'x' at the top.
1. Type `python manage.py runserver`

1. Open a browser and navigate to

1. You should see an install success page. If so, congratulations! You have successfully installed Django.
1. Stop running server by clicking in the terminal and typing ctrl+C. You have successfully completed Day 0!