Installation¶

Stable release Python Package Index Python versions Python wheel¶

Countdoom is distributed on the Python Package Index (PyPI). The best way to install it is with pip:

(Optional) Create a virtual environment:

$ virtualenv countdoom-env

To install Countdoom, run this command in your terminal:

$ pip install countdoom

This is the preferred method to install Countdoom, as it will always install the most recent stable release.

If you don’t have pip installed, this Python installation guide can guide you through the process.

From sources GitHub Release¶

The sources for Countdoom can be downloaded from the Github repo.

You can either clone the public repository:

$ git clone git://github.com/renemarc/countdoom

Or download the tarball:

$ curl  -OL https://github.com/renemarc/countdoom/tarball/master

Once you have a copy of the source, you can install it with:

$ python setup.py install

Or if you’re on a system that supports makefiles:

$ make install