.. _install: Installation ======================== This part of the documentation covers the installation of Python-Keycloak. This is the first step to using the software library. Via Pypi Package ----------------- To install python-keycloak, run this command in your terminal of choice:: pip install python-keycloak Manually ----------------- The python-keycloak code is `available `_. on Github. You can either clone the public repository:: git clone https://github.com/marcospereirampj/python-keycloak.git Or, download the source code. Once you have a copy of the source, you can embed it in your own Python package, or install it into your site-packages easily:: python -m pip install . Dependencies ----------------- python-keycloak depends on: - Python 3 - [requests](https://requests.readthedocs.io) - [python-jose](http://python-jose.readthedocs.io/en/latest/) - [urllib3](https://urllib3.readthedocs.io/en/stable/) Tests Dependencies ----------------- - [tox](https://tox.readthedocs.io/) - [pytest](https://docs.pytest.org/en/latest/) - [pytest-cov](https://github.com/pytest-dev/pytest-cov) - [wheel](https://github.com/pypa/wheel)