Files
opensearch-pyd/docs/guide/installation.asciidoc
T
Seth Michael Larson 1f4e947821 [7.x] [DOCS] Reorganizes Overview and Installation chapters (#1396)
Co-authored-by: István Zoltán Szabó <istvan.szabo@elastic.co>
2020-10-05 11:43:53 -05:00

20 lines
569 B
Plaintext

[[installation]]
== Installation
The Python client for {es} can be installed with pip:
[source,sh]
-------------------------------------
$ python -m pip install elasticsearch
-------------------------------------
If your application uses async/await in Python you can install with the `async`
extra:
[source,sh]
--------------------------------------------
$ python -m pip install elasticsearch[async]
--------------------------------------------
Read more about
https://elasticsearch-py.readthedocs.io/en/master/async.html[how to use Asyncio with this project].