File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 22title : " Python Data Analysis Guides"
33---
44
5- - [ Data Management] ( dataManagement.html )
5+ - [ Data Management] ( dataManagement.qmd )
6+ - [ ` Django ` ] ( django.qmd )
7+ - [ ` Python ` ] ( django.qmd )
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments