Installation
Last updated
Was this helpful?
Last updated
Was this helpful?
Operating systems Konduit Serving is supported on Linux, macOS and Windows.
Dependencies Ensure that you have JDK 8.0 installed. To use the Python SDK, install Python 3.7 and above.
Hardware requirements Binaries are provided for Intel/x86 architectures. For ARM support, see the page.
GPU: Hardware acceleration with CUDA version 10.1 (included in GPU build) is supported.
Install konduit
from PyPI with
A version of Konduit Serving with the command line interface (CLI) is not currently available on PyPI. To obtain the CLI, clone the repository, and in the python
folder run
pip install
.
If using the Anaconda distribution, you may install konduit
from the konduitai
Anaconda channel. First add the konduitai
channel:
then install konduit
with:
You may need to install Cython before installing konduit
using
We recommend using Python 3.7+.
In the absence of the KONDUIT_JAR_PATH
environment variable, the Python SDK looks for the Konduit Serving JAR file in ~/.konduit/konduit-serving
. To overwrite this default, you can set a default location for the Konduit Serving JAR using environment variables.
Installing pyjnius
returns
When running konduit
commands on Windows, the following error message is returned:
konduit
PyPI wheels and conda packages do not currently ship with Konduit Serving JARs. Refer to the page for instructions on compiling a Konduit Serving JAR.
Use :
Fix: Ensure your JAVA environment variables point to a 64-bit version of Java if you're using a 64-bit version of Python, or a 32-bit version of Java if you're using a 32-bit version of Python (see ).
Fix: On Windows, pyjnius
requires an additional PATH variable to locate jvm.dll
. Refer to the for details.