Installation¶
jetraw-python-sdk v0.17.2
The current version of the Python SDK is supported on Windows 10 or higher, on MacOS Ventura 13 or higher and Ubuntu 22.04.
Set the python environment¶
To install the Jetraw Python SDK we need a clean environment and Python installed. For this, we recommend the following steps:
Install Miniconda: This will install a base version of Python too. To achieve this please proceed as follows:
Download the Miniconda installer for MacOS from the official website.
Open the Terminal.
Navigate to the location where you downloaded the installer. For example, if the installer is in your Downloads folder, you can navigate there with
cd /Downloads
.Run the installer. Replace
Miniconda3-latest-MacOSX-x86_64.sh
with the name of the file you downloaded.$ bash Miniconda3-latest-MacOSX-x86_64.sh
Close the Terminal and open a new Terminal window to activate the changes. Type in this command to verify the installation:
$ conda --version
Create a new environment with the following command:
$ conda create -n jetraw-env python=3.13
Activate the environment with this command:
$ conda activate jetraw-env
Once Python and a the environment have been created and activated, the next step is to install the Jetraw Python SDK.
Install the Python SDK¶
Install the Python wheel from the official release page.
pip install jetraw-python-sdk --index-url https://jetraw-releases.s3.eu-central-2.amazonaws.com