File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -69,13 +69,13 @@ Now, we can install Python 2.7:
69
69
70
70
.. code-block :: console
71
71
72
- $ brew install python
72
+ $ brew install python@2
73
73
74
74
or Python 3:
75
75
76
76
.. code-block :: console
77
77
78
- $ brew install python3
78
+ $ brew install python
79
79
80
80
This will take a minute or two.
81
81
@@ -84,7 +84,7 @@ Homebrew names the executable ``python2`` so that you can still run the system P
84
84
85
85
.. code-block :: console
86
86
87
- $ python -V # system Python interpreter
87
+ $ python -V # Homebrew installed Python 3 interpreter (if installed)
88
88
$ python2 -V # Homebrew installed Python 2 interpreter
89
89
$ python3 -V # Homebrew installed Python 3 interpreter (if installed)
90
90
@@ -107,7 +107,7 @@ and is actively maintained.
107
107
.. code-block :: console
108
108
109
109
$ pip2 -V # pip pointing to the Homebrew installed Python 2 interpreter
110
- $ pip3 -V # pip pointing to the Homebrew installed Python 3 interpreter (if installed)
110
+ $ pip -V # pip pointing to the Homebrew installed Python 3 interpreter (if installed)
111
111
112
112
113
113
You can’t perform that action at this time.
0 commit comments