Revision 1 as of 2014-01-11 22:24:32

Clear message

The Python intermediate's guide: Python packages confusion reducer

This page assumes

The aim of this page is to reduce this confusion in a few important spots.

Some recurring sources of such confusion are these:

Disclaimer: The primary author of this page is a Python intermediate himself. If an expert could check/correct the statements and then remove this message, that would be most helpful. If this message is still present, beware of errors.


Python3 versus Python2

Python3 is mature enough and well-supported enough that you could consider it the preferred platform when you write software from scratch.

The main reason for using Python2 is that you work with an existing Python2 software base. A secondary reason could be that an extension package that will be important for you is available for Python2 only. (But there are now also packages that are available in Python3 only)

Package installation

Multiple isolated Python environments

By default, packages are installed into the local Python installation. They become a part of it and will be available to any Python program on that computer. This can become inconvenient: Sometimes you need different versions of a package for different applications or a certain package must not be available for some.

One could avoid this by installing packages elsewhere and manipulating the PYTHONPATH environment variable appropriately, but this is inconvenient as well, because packages often depend on many other packages and so this approach can produce immense confustion and giant PYTHONPATH lists.

A virtual environment behaves like a copy of the Python installation's directory tree (with or without the site-packages subtree). One can have a separate virtual environment for each project or application to isolate them from each other and install only the required packages into each.

You should use a virtual environment for any team project and for any package you intend to distribute.

Creating a package installer or application installer

Since Python 2.0, there is a convention that any reusable package or distributable application should have a top level file setup.py that implements a command line tool for installation and configuration. This file will

See the documentation of distutils from the standard library. Distutils will not only make setup.py easy to write, it will also provide it with functionality for creating the distributable package file in the first place.

In contrast to some other platforms it is common in Python that neither a reusable package nor a distributable application come packaged with all the additional reusable packages they depend on. Rather, the dependencies are only declared in setup.py and an installer program such as pip will download and install additional packages (that are yet missing or the version of which is inappropriate) automatically.

Confusingly, there are multiple frameworks that are used to support setup.py:

So what should you use? For an up-to-date answer, see the summary on stackoverflow and the Python Packaging User Guide recommendation.

GUI programming

There is a surprising range of toolkits for building desktop GUIs with Python. One of them, tkinter, is a core package consisting of Python bindings for TCL/TK's tk plus additional widgets (in tkinter.ttk and tkinter.tix). tkinter is platform-independent and easy to program for simple GUIs.

For larger applications, you might prefer a more extensive GUI toolkit.

Web development

There is a surprising range of frameworks for building web applications with Python. Several of them are quite good. They follow fairly different objectives (such as being slim vs. extensive or regarding the development style they imply). Among these, Django has the largest and most active community by far.

Object-relational mapping

There are two mature, powerful, and widely used solutions for O/R mapping:

Although Django is a web development framework, some people also use it for non-web software in order to make use of its persistence framework.

Unable to edit the page? See the FrontPage for instructions.