1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-01-22 15:28:57 +00:00
borg/docs/installation.rst
Jonas Borgström b718a443a8 Project rename
2013-07-09 20:14:18 +02:00

40 lines
881 B
ReStructuredText

.. include:: global.rst.inc
.. _installation:
Installation
=============
|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
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 Attic
Installing from source tarballs
-------------------------------
.. parsed-literal::
$ curl -O |package_url|
$ tar -xvzf |package_filename|
$ cd |package_dirname|
$ python setup.py install
Installing from git
-------------------
.. parsed-literal::
$ git clone |git_url|
$ cd attic
$ python setup.py install