Installing the Hyper Python SDK package
Adding as a dependency to your project
Using pip
Add the latest stable release to requirements.txt:
echo "hyper-systems" >> requirements.txt
You can also specify the version, for example:
echo "hyper-systems==1.1.4" >> requirements.txt
Consider using venv, if you want to have an isolated environment for your project with pip.
Using poetry
Add the latest stable release to pyproject.toml
with poetry:
poetry add "hyper-systems"
You can also specify the version, for example:
poetry add "hyper-systems==1.1.4"
Add the latest development version to pyproject.toml
with poetry:
$ poetry add git+https://github.com/hyper-systems/hyper-python-sdk.git@master