-
Notifications
You must be signed in to change notification settings - Fork 3
/
step_1.html
53 lines (50 loc) · 1.54 KB
/
step_1.html
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
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=yes"
/>
<title>step_1</title>
<style type="text/css">
code {
white-space: pre-wrap;
}
span.smallcaps {
font-variant: small-caps;
}
span.underline {
text-decoration: underline;
}
div.column {
display: inline-block;
vertical-align: top;
width: 50%;
}
</style>
</head>
<body>
<h2
id="step-1-run-the-python-repl-and-verify-you-have-python-3.6-or-higher."
>
Step 1: Run the Python REPL and verify you have Python 3.6 or higher.
</h2>
<h3 id="on-macos-and-linux">On macOS and Linux</h3>
<pre><code>$ python3
Python 3.8.3 (default, May 27 2020, 20:54:22)
[Clang 11.0.3 (clang-1103.0.32.59)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>></code></pre>
<h3 id="on-windows">On Windows</h3>
<pre><code># Ensure the right version of Python
# Should be 3.6 or higher
C:\project\> python -V
Python 3.8.3
C:\project\> python
Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:37:02) [MSC v.1924 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>></code></pre>
</body>
</html>