This folder contains helpful scripts for development.
Both of these scripts will create a Python environment based on the default version of python in your PATH. Ensure the version is at least 3.10 by running:
python --versionThe virtual environment, by default, will created as a directory named venv that will be placed at the root of this project.
Note: The SDK supports Python 3.10, 3.11, 3.12, 3.13, and 3.14.
Powershell needs to be set to allow running of scripts. Do this by opening PowerShell in admin mode and running:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUserThen, from the root directory, run:
. ./scripts/dev_setup.ps1From the root of the project, you can activate the environment:
. ./venv/Scripts/activateTo deactivate:
deactivateFrom the root directory, run:
. ./scripts/dev_setup.shFrom the root of the project, you can activate the environment:
. ./venv/bin/activateTo deactivate:
deactivateIf you encounter any issues, please create an issue on GitHub.