Installation¶
PyExasol is distributed through PyPI . It can be installed via pip, poetry, or any other type of dependency management tool:
pip install pyexasol
Optional Dependencies¶
PyExasol can also be installed with sets of optional dependencies to enable certain functionality.
pip install pyexasol[optional-package-name]
orjson
is required forjson_lib=orjson
to improve JSON parsing performance.pandas
is required for importing_and_exporting_data functions working withpandas.DataFrame
.polars
is required for importing_and_exporting_data functions working withpolars.DataFrame
.pyarrow
is required for importing_and_exporting_data functions working withpyarrow.parquet
.pproxy
is used in the examples to test an HTTP proxy.rapidjson
is required forjson_lib=rapidjson
to improve JSON parsing performance.ujson
is required forjson_lib=ujson
to improve JSON parsing performance.