generated from DevPsyLab/QuartoWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython.qmd
More file actions
41 lines (30 loc) · 760 Bytes
/
python.qmd
File metadata and controls
41 lines (30 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
title: "Python"
execute:
echo: true
error: true
jupyter: python3
format:
html:
code-fold: false
code-tools:
source: true
toggle: true
---
# Resources for Learning
- <https://www.linkedin.com/learning/>
- <https://www.w3schools.com/python/default.asp>
- <https://www.tutorialspoint.com/python/index.htm>
- <https://www.pythoncheatsheet.org>
# PC vs Mac
For terminal commands on Mac, use `python3`.
For terminal commands on PC, use `python` or `py`.
# Install Python
Download and install the latest version of `Python`: <https://www.python.org/downloads/>
Verify installation:
```{python}
#| eval: false
python3 -V # gets Python version
```
# Install `Anaconda` for Package Management
<https://www.anaconda.com/download>