PyKMIP/docs/source/installation.rst
Peter Hamilton 43016fef20 Update the PyKMIP documentation in preparation for v0.10
This change updates the PyKMIP documentation in preparation for
the v0.10 release. Changes include added detail and improvements
to the client and server documentation, tweaks to the install,
index, and community pages, and a new security page with info on
PyKMIP security issues and known vulnerabilities.
2020-02-24 15:02:03 -05:00

39 lines
956 B
ReStructuredText

Installation
============
You can install PyKMIP via ``pip``:
.. code-block:: console
$ pip install pykmip
Supported platforms
-------------------
PyKMIP is tested on Python 2.7, 3.4, 3.5, 3.6, and 3.7 on the following
operating systems:
* Ubuntu 12.04, 14.04, and 16.04
PyKMIP also works on Windows and MacOSX however these platforms are not
officially supported or tested.
Building PyKMIP on Linux
------------------------
You can install PyKMIP from source via ``git``:
.. code-block:: console
$ git clone https://github.com/openkmip/pykmip.git
$ python pykmip/setup.py install
If you are on a fresh Linux build, you may also need several additional system
dependencies, including headers for Python, OpenSSL, ``libffi``, and
``libsqlite3``.
Ubuntu
~~~~~~
Replace ``python-dev`` with ``python3-dev`` if you are using Python 3.0+.
.. code-block:: console
$ sudo apt-get install python-dev libffi-dev libssl-dev libsqlite3-dev