This repository is part of the 'Nieuwe Warmte Nu Design Toolkit' project.
Python implementation of the OMOTES SDK through jobs which may be submitted, receive status updates for submitted jobs or cancel submitted jobs.
Please install protoc
on your machine and make sure it is available in your PATH
.
Version 25.2 is used: https://github.com/protocolbuffers/protobuf/releases/tag/v25.2.
Installation example - Linux
-
Manually download the release zip file corresponding to your operating system and computer architecture (
protoc-<version>-<os>-<arch>.zip
) from github, or fetch the file using the command below.wget https://github.com/protocolbuffers/protobuf/releases/download/v25.2/protoc-25.2-linux-x86_64.zip
-
Unzip the file under
$HOME/.local
or a directory of your choiceunzip protoc-25.2-linux-x86_64.zip -d $HOME/.local
-
Update your environment
PATH
variable to include the path to the protoc executable.export PATH="$PATH:$HOME/.local/bin"