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
Copy file name to clipboardExpand all lines: docs/starting/install/linux.rst
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
.. _install-linux:
2
2
3
-
Installing Python on Linux
4
-
==========================
3
+
Installing Python 2 on Linux
4
+
============================
5
5
6
-
The latest versions of CentOS, Fedora, Redhat Enterprise (RHEL) and Ubuntu
6
+
The latest versions of CentOS, Fedora, Redhat Enterprise (RHEL) and Ubuntu
7
7
**come with Python 2.7 out of the box**.
8
8
9
9
To see which version of Python you have installed, open a command prompt and run
@@ -32,11 +32,11 @@ Setuptools & Pip
32
32
33
33
The two most crucial third-party Python packages are `setuptools <https://pypi.python.org/pypi/setuptools>`_ and `pip <https://pip.pypa.io/en/stable/>`_.
34
34
35
-
Once installed, you can download, install and uninstall any compliant Python software
36
-
product with a single command. It also enables you to add this network installation
35
+
Once installed, you can download, install and uninstall any compliant Python software
36
+
product with a single command. It also enables you to add this network installation
37
37
capability to your own Python software with very little work.
38
38
39
-
Python 2.7.9 and later (on the python2 series), and Python 3.4 and later include
39
+
Python 2.7.9 and later (on the python2 series), and Python 3.4 and later include
40
40
pip by default.
41
41
42
42
To see if pip is installed, open a command prompt and run
@@ -50,15 +50,15 @@ To install pip, `follow the official pip installation guide <https://pip.pypa.io
50
50
Virtual Environments
51
51
--------------------
52
52
53
-
A Virtual Environment is a tool to keep the dependencies required by different projects
54
-
in separate places, by creating virtual Python environments for them. It solves the
55
-
"Project X depends on version 1.x but, Project Y needs 4.x" dilemma, and keeps
53
+
A Virtual Environment is a tool to keep the dependencies required by different projects
54
+
in separate places, by creating virtual Python environments for them. It solves the
55
+
"Project X depends on version 1.x but, Project Y needs 4.x" dilemma, and keeps
56
56
your global site-packages directory clean and manageable.
57
57
58
58
For example, you can work on a project which requires Django 1.10 while also
59
59
maintaining a project which requires Django 1.8.
60
60
61
-
To start using this and see more information: :ref:`Virtual Environments <virtualenvironments-ref>` docs.
61
+
To start using this and see more information: :ref:`Virtual Environments <virtualenvironments-ref>` docs.
62
62
63
63
You can also use :ref:`virtualenvwrapper <virtualenvwrapper-ref>` to make it easier to
0 commit comments