Skip to main content
Version: 1.13.0

Install Python SDK

This topic describes how to install Python SDK.

Install SDK

Before installing, ensure that you have Python version 3.7 or later installed on your system.

To install the egs-sdk package, use the following command:

pip install git+https://github.com/kubeslice-ent/egs-sdk.git

To install the egs-sdk package on a specific branch or version, use the following command:

pip install git+https://github.com/kubeslice-ent/egs-sdk.git@<branch_or_tag_name>

Set up a Development Environment

If you want to set up a development environment, you can clone the repository, and also contribute to the SDK development.

Clone the Repository

To set up the development environment, clone the repository using the following command:

git clone https://github.com/kubeslice-ent/egs-sdk.git
cd egs-sdk
pip install -e

Run Tests

Tests are available in the SDK to ensure that it works as expected. To run tests, use the following command:

pytest