Skip to content

Commit 7da84ed

Browse files
20240414 - updates
1 parent 3eb6da6 commit 7da84ed

File tree

4 files changed

+76
-1
lines changed

4 files changed

+76
-1
lines changed

_quarto.yml

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ website:
1111
menu:
1212
- text: Data Management
1313
href: dataManagement.qmd
14+
- text: Django
15+
href: django.qmd
16+
- text: Python
17+
href: python.qmd
1418
- text: Links
1519
menu:
1620
- text: Lab Wiki

django.qmd

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: "Django"
3+
execute:
4+
echo: true
5+
error: true
6+
code-fold: true
7+
jupyter: python3
8+
format:
9+
html:
10+
code-fold: false
11+
code-tools:
12+
source: true
13+
toggle: true
14+
---
15+
16+
# Overview of `Django`
17+
18+
`Django` is a web framework used in `Python`.
19+
20+
# Install `Django`
21+
22+
In terminal:
23+
24+
```{python}
25+
#| eval: false
26+
27+
python3 -m pip install Django==5.0.4 # install Django on Mac
28+
py -m pip install Django==5.0.4 # install Django on Windows
29+
```
30+
31+
Verify installation:
32+
33+
```{python}
34+
#| eval: false
35+
36+
python3 -m django --version # gets Django version
37+
```
38+

index.qmd

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
title: "Python Data Analysis Guides"
33
---
44

5-
- [Data Management](dataManagement.html)
5+
- [Data Management](dataManagement.qmd)
6+
- [`Django`](django.qmd)
7+
- [`Python`](django.qmd)

python.qmd

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: "Python"
3+
---
4+
5+
# Resources for Learning
6+
7+
- https://www.linkedin.com/learning/
8+
- https://www.w3schools.com/python/default.asp
9+
- https://www.tutorialspoint.com/python/index.htm
10+
- https://www.pythoncheatsheet.org
11+
12+
# PC vs Mac
13+
14+
For terminal commands on Mac, use `python3`.
15+
For terminal commands on PC, use `python` or `py`.
16+
17+
# Install Python
18+
19+
Download and install the latest version of `Python`: https://www.python.org/downloads/
20+
21+
Verify installation:
22+
23+
```{python}
24+
#| eval: false
25+
26+
python3 -V # gets Python version
27+
```
28+
29+
# Install `Anaconda` for Package Management
30+
31+
https://www.anaconda.com/download

0 commit comments

Comments
 (0)