working with python 3

This commit is contained in:
2017-04-13 10:53:18 -04:00
parent 7096c95132
commit 9164a1b1e9
3 changed files with 37 additions and 1 deletions
+18
View File
@@ -41,6 +41,24 @@ described in the next section before you start building Python applications for
real-world use. In particular, you should always install Setuptools, as it
makes it much easier for you to use other third-party Python libraries.
Working with Python 3
---------------------
At this point, you have the system Python 2.7 available, potentially the
:ref:`Homebrew version of Python 2 <install-osx>` installed, and the Homebrew
version of Python 3 as well.
.. code-block:: console
$ python
will launch the Python 2 interpreter.
.. code-block:: console
$ python3
Setuptools + Pip
----------------