Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Scripts

This folder contains helpful scripts for development.

Development Setup Scripts

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 --version

The 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.

Windows

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 CurrentUser

Then, from the root directory, run:

. ./scripts/dev_setup.ps1

From the root of the project, you can activate the environment:

. ./venv/Scripts/activate

To deactivate:

deactivate

Linux and macOS

From the root directory, run:

. ./scripts/dev_setup.sh

From the root of the project, you can activate the environment:

. ./venv/bin/activate

To deactivate:

deactivate

Troubleshooting

If you encounter any issues, please create an issue on GitHub.