various fixes

This commit is contained in:
ducoterra
2020-10-25 21:07:40 -04:00
parent e2d86935f4
commit 4099723dc3

View File

@@ -94,7 +94,7 @@ Your most important tool as a programmer is a proper editor. It should offer you
### 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\username\Projects`. Create this folder now. Bookmark it, put it in your favorites, don't lose it.
I keep all my projects in a folder called "Projects" in my home directory. On Windows this is at `C:\Users\<your username>\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`
@@ -116,7 +116,7 @@ A python virtual environment is a folder that will hold your python installation
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 right side of VSCode.
4. Type `python -m venv venv`. You'll see a folder appear on the left side of VSCode.
![venv_windows](img/day0/venv_windows.gif)
@@ -152,6 +152,8 @@ Django is a pip package. Pip packages are other people's python code that you ca
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 <kbd>ctrl</kbd>+<kbd>C</kbd>. You have successfully completed Day 0!
## I have a Mac
### Install Git
@@ -228,7 +230,7 @@ Your most important tool as a programmer is a proper editor. It should offer you
### Create a "Projects" folder
I keep all my projects in a folder called "Projects" in my home directory. On MacOS this is at `/Users/username/Projects`. Create this folder now. Bookmark it, put it in your favorites, don't lose it.
I keep all my projects in a folder called "Projects" in my home directory. On MacOS this is at `/Users/<your username>/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`
@@ -250,7 +252,7 @@ A python virtual environment is a folder that will hold your python installation
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 right side of VSCode.
1. Type `python3 -m venv venv`. You'll see a folder appear on the left side of VSCode.
![venv_mac](img/day0/venv_mac.gif)
@@ -258,8 +260,6 @@ A python virtual environment is a folder that will hold your python installation
![source_venv_mac](img/day0/source_venv_mac.gif)
1. Stop running server by clicking in the terminal and typing <kbd>ctrl<kbd>+<kbd>C</kbd>
### 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.
@@ -288,4 +288,4 @@ Django is a pip package. Pip packages are other people's python code that you ca
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 <kbd>ctrl<kbd>+<kbd>C</kbd>
1. Stop running server by clicking in the terminal and typing <kbd>ctrl</kbd>+<kbd>C</kbd>. You have successfully completed Day 0!