File tree 1 file changed +17
-7
lines changed
1 file changed +17
-7
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,8 @@ test their code.
45
45
source ~/.bashrc
46
46
```
47
47
48
- 1. Verify that you are now using the pyenv Python shim.
48
+ 1. After you have installed a python version through pyenv (see below),
49
+ verify that you are now using the pyenv Python shim.
49
50
50
51
```
51
52
$ which python
@@ -69,16 +70,25 @@ test their code.
69
70
brew update
70
71
brew upgrade pyenv
71
72
```
73
+
74
+ View the options related to a specific release with
75
+
76
+ ```
77
+ pyenv install 3.x
78
+ ```
79
+
80
+
72
81
73
82
1. Compile the necessary Python versions with pyenv. Use the latest release
74
- of the versions you wish to test against.
83
+ of the versions you wish to test against. A list of available versions
84
+ is available on [python.org](https://www.python.org/doc/versions/)
75
85
76
- As of August 8, 2018 my (tswast@) Python versions are:
86
+ As of December 9, 2019 latest Python versions are:
77
87
78
- * 2.7.15 (latest 2.7.x release)
79
- * 3.5.4 (latest 3.5.x release)
80
- * 3.6.4 (latest 3.6.x release)
81
- * 3.7.0 (latest 3.7.x release)
88
+ * 2.7.17 (latest 2.7.x release)
89
+ * 3.5.8 (latest 3.5.x release)
90
+ * 3.6.9 (latest 3.6.x release)
91
+ * 3.7.5 (latest 3.7.x release)
82
92
83
93
## Using pyenv and pyenv-virtualenv to manage your Python versions
84
94
You can’t perform that action at this time.
0 commit comments