| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | .. include:: global.rst.inc.. _installation:Installation============|project_name| requires Python_ 3.2 or above to work. Even though Python 3 isnot the default Python version on most Linux distributions it is usuallyavailable as an optional install.Other dependencies:* `msgpack-python`_ >= 0.1.10* OpenSSL_ >= 1.0.0The OpenSSL version bundled with Mac OS X and FreeBSD is most likey too old.Newer versions are available from homebrew_ on OS X and from FreeBSD ports.Installing from PyPI using pip------------------------------::    $ pip install AtticInstalling from source tarballs-------------------------------.. parsed-literal::    $ curl -O |package_url|    $ tar -xvzf |package_filename|    $ cd |package_dirname|    $ python setup.py installInstalling from git-------------------.. parsed-literal::    $ git clone |git_url|    $ cd attic    $ python setup.py installPlease not that when installing from git Cython_ is required to generate some files thatare normally bundled with the release tarball.
 |