2013-06-30 19:30:17 +00:00
|
|
|
.. include:: global.rst.inc
|
|
|
|
.. _installation:
|
|
|
|
|
|
|
|
Installation
|
|
|
|
=============
|
|
|
|
|
2013-07-03 20:38:07 +00:00
|
|
|
|project_name| requires Python_ 3.2 or above to work. Even though Python 3 is
|
|
|
|
not the default Python version on most Linux distributions it is usually
|
2013-06-30 19:30:17 +00:00
|
|
|
available as an optional install.
|
|
|
|
|
|
|
|
Other dependencies:
|
|
|
|
|
|
|
|
* `msgpack-python`_ >= 0.1.10
|
|
|
|
* OpenSSL_ >= 1.0.0
|
|
|
|
|
|
|
|
The OpenSSL provided by Mac OS X is too old so OS X users are recommended
|
|
|
|
to install a newer version using homebrew_.
|
|
|
|
|
|
|
|
Installing from PyPI using pip
|
|
|
|
------------------------------
|
|
|
|
::
|
|
|
|
|
|
|
|
$ pip install darc
|
|
|
|
|
|
|
|
Installing from source tarballs
|
|
|
|
-------------------------------
|
|
|
|
::
|
|
|
|
|
|
|
|
$ curl -O url
|
|
|
|
$ tar -xvzf darc-version.tar.gz
|
|
|
|
$ cd darc-version
|
|
|
|
$ python setup.py install
|
|
|
|
|
|
|
|
Installing from git
|
|
|
|
-------------------
|
|
|
|
::
|
|
|
|
|
|
|
|
$ git clone https://github.com/jborg/darc.git
|
|
|
|
$ cd darc
|
|
|
|
$ python setup.py install
|