You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Link py2 docs to py3 docs.
Fix invisible subheading.
Note that pip is part of the Python install now; closesrealpython#347.
Suggest avoiding eol 2.6 unless paid specifically.
Check out our :ref:`guide for installing Python 3 on Windows<install3-windows>`.
10
+
8
11
First, download the `latest version <https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi>`_
9
12
of Python 2.7 from the official website. If you want to be sure you are installing a fully
10
13
up-to-date version, click the Downloads > Windows link from the home page of the
@@ -50,24 +53,22 @@ makes it much easier for you to use other third-party Python libraries.
50
53
Setuptools + Pip
51
54
----------------
52
55
53
-
The most crucial third-party Python software of all is Setuptools, which
54
-
extends the packaging and installation facilities provided by the distutils in
55
-
the standard library. Once you add Setuptools to your Python system you can
56
-
download and install any compliant Python software product with a single
57
-
command. It also enables you to add this network installation capability to
58
-
your own Python software with very little work.
56
+
The two most crucial third-party Python packages are `setuptools <https://pypi.python.org/pypi/setuptools>`_ and `pip <https://pip.pypa.io/en/stable/>`_.
57
+
58
+
Once installed, you can download, install and uninstall any compliant Python software
59
+
product with a single command. It also enables you to add this network installation
60
+
capability to your own Python software with very little work.
59
61
60
-
To obtain the latest version of Setuptools for Windows, run the Python script
61
-
available here: `ez_setup.py <https://bootstrap.pypa.io/ez_setup.py>`_
62
+
Python 2.7.9 and later (on the python2 series), and Python 3.4 and later include
63
+
pip by default.
62
64
65
+
To see if pip is installed, open a command prompt and run
66
+
67
+
.. code-block:: console
63
68
64
-
You'll now have a new command available to you: **easy_install**. It is
65
-
considered by many to be deprecated, so we will install its replacement:
66
-
**pip**. Pip allows for uninstallation of packages, and is actively maintained,
67
-
unlike easy_install.
69
+
$ command -v pip
68
70
69
-
To install pip, run the Python script available here:
To install pip, `follow the official pip installation guide <https://pip.pypa.io/en/latest/installing/>`_ - this will automatically install the latest version of setuptools.
Copy file name to clipboardExpand all lines: docs/starting/install3/win.rst
+6-16Lines changed: 6 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -64,24 +64,14 @@ This will launch the Python 3 interpreter.
64
64
Setuptools + Pip
65
65
----------------
66
66
67
-
The most crucial third-party Python software of all is Setuptools, which
68
-
extends the packaging and installation facilities provided by the distutils in
69
-
the standard library. Once you add Setuptools to your Python system you can
70
-
download and install any compliant Python software product with a single
71
-
command. It also enables you to add this network installation capability to
72
-
your own Python software with very little work.
67
+
The two most crucial third-party Python packages are `setuptools <https://pypi.python.org/pypi/setuptools>`_ and `pip <https://pip.pypa.io/en/stable/>`_,
68
+
which let you download, install and uninstall any compliant Python software
69
+
product with a single command. It also enables you to add this network installation
70
+
capability to your own Python software with very little work.
73
71
74
-
To obtain the latest version of Setuptools for Windows, run the Python script
75
-
available here: `ez_setup.py <https://bootstrap.pypa.io/ez_setup.py>`_
72
+
All supported versions of Python 3 include pip, so just make sure it's up to date::
76
73
77
-
78
-
You'll now have a new command available to you: **easy_install**. It is
79
-
considered by many to be deprecated, so we will install its replacement:
80
-
**pip**. Pip allows for uninstallation of packages, and is actively maintained,
81
-
unlike easy_install.
82
-
83
-
To install pip, run the Python script available here:
0 commit comments