mirror of
https://github.com/kennethreitz/python-guide.git
synced 2026-06-05 14:50:19 +00:00
70 lines
2.9 KiB
ReStructuredText
70 lines
2.9 KiB
ReStructuredText
.. _install-linux:
|
|
|
|
Installing Python on Linux
|
|
==========================
|
|
|
|
The latest versions of CentOS, Fedora, Redhat Enterprise (RHEL) and Ubuntu **come with Python 2.7 out of the box**.
|
|
|
|
To see which version of Python you have installed, open a command prompt and run
|
|
|
|
.. code-block:: console
|
|
|
|
$ python --version
|
|
|
|
Some older versions of RHEL and CentOS come with Python 2.4 which is
|
|
unacceptable for modern Python development. Fortunately, there are
|
|
`Extra Packages for Enterprise Linux`_ which include high
|
|
quality additional packages based on their Fedora counterparts. This
|
|
repository contains a Python 2.6 package specifically designed to install
|
|
side-by-side with the system's Python 2.4 installation.
|
|
|
|
.. _Extra Packages for Enterprise Linux: http://fedoraproject.org/wiki/EPEL
|
|
|
|
You do not need to install or configure anything else to use Python. Having
|
|
said that, I would strongly recommend that you install the tools and libraries
|
|
described in the next section before you start building Python applications
|
|
for real-world use. In particular, you should always install Setuptools and pip, as
|
|
it makes it much easier for you to use other third-party Python libraries.
|
|
|
|
Setuptools & Pip
|
|
----------------
|
|
|
|
The two most crucial third-party Python packages are `setuptools <https://pypi.python.org/pypi/setuptools>`_ and `pip <https://pip.pypa.io/en/stable/>`_.
|
|
|
|
Once installed, you can download, install and uninstall any compliant Python software
|
|
product with a single command. It also enables you to add this network installation
|
|
capability to your own Python software with very little work.
|
|
|
|
Python 2.7.9 and later (on the python2 series), and Python 3.4 and later include
|
|
pip by default.
|
|
|
|
To see if pip is installed, open a command prompt and run
|
|
|
|
.. code-block:: console
|
|
|
|
$ command -v pip
|
|
|
|
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.
|
|
|
|
Virtual Environments
|
|
--------------------
|
|
|
|
A Virtual Environment is a tool to keep the dependencies required by different projects
|
|
in separate places, by creating virtual Python environments for them. It solves the
|
|
"Project X depends on version 1.x but, Project Y needs 4.x" dilemma, and keeps
|
|
your global site-packages directory clean and manageable.
|
|
|
|
For example, you can work on a project which requires Django 1.3 while also
|
|
maintaining a project which requires Django 1.0.
|
|
|
|
To start using and see more information: `Virtual Environments <http://github.com/kennethreitz/python-guide/blob/master/docs/dev/virtualenvs.rst>`_ docs.
|
|
|
|
You can also use :ref:`virtualenvwrapper <virtualenvwrapper-ref>` to make it easier to
|
|
manage your virtual environments.
|
|
|
|
--------------------------------
|
|
|
|
This page is a remixed version of `another guide <http://www.stuartellis.eu/articles/python-development-windows/>`_,
|
|
which is available under the same license.
|
|
|