Installation
Follow the steps below to install the Telekinesis SDK, set up your API key, and run your first example.
Step 1: Create an API Key
Create a Telekinesis account and generate an API key:

Store the key in a safe location, such as your shell configuration file (e.g. .zshrc, .bashrc) or another secure location on your computer.
Step 2: Configure the API Key
Export the API key as an environment variable.
Open a terminal window and run below command as per your OS system.
Replace <your_api_key> with the one generated in Step 1.
export TELEKINESIS_API_KEY="<your_api_key>"setx TELEKINESIS_API_KEY "<your_api_key>"WARNING
For Windows, after running setx, restart the terminal for the changes to take effect.
Optionally verify that the key is set:
echo $TELEKINESIS_API_KEYecho $Env:TELEKINESIS_API_KEYThe Telekinesis SDK uses this API key to authenticate requests and automatically reads it from your system environment.
Step 3: Install the Telekinesis SDK
Create an isolated environment so that there is no dependency conflicts. We recommend installing
Minicondaenvironment by following instructions from here.Create a new
condaenvironment calledtelekinesis:
conda create -n telekinesis python=3.11- Activate the environment:
conda activate telekinesis- Install the core SDK using
pip:
We currently support Python versions - 3.11, 3.12. Ensure your environment is in the specified Python version.
pip install telekinesis-ai
