installation.rst 881 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .. include:: global.rst.inc
  2. .. _installation:
  3. Installation
  4. =============
  5. |project_name| requires Python_ 3.2 or above to work. Even though Python 3 is
  6. not the default Python version on most Linux distributions it is usually
  7. available as an optional install.
  8. Other dependencies:
  9. * `msgpack-python`_ >= 0.1.10
  10. * OpenSSL_ >= 1.0.0
  11. The OpenSSL provided by Mac OS X is too old so OS X users are recommended
  12. to install a newer version using homebrew_.
  13. Installing from PyPI using pip
  14. ------------------------------
  15. ::
  16. $ pip install Attic
  17. Installing from source tarballs
  18. -------------------------------
  19. .. parsed-literal::
  20. $ curl -O |package_url|
  21. $ tar -xvzf |package_filename|
  22. $ cd |package_dirname|
  23. $ python setup.py install
  24. Installing from git
  25. -------------------
  26. .. parsed-literal::
  27. $ git clone |git_url|
  28. $ cd attic
  29. $ python setup.py install