Create your GitHub fork, then clone your fork locally and connect it to the upstream repo to make it easy to sync in the future.
git clone https://github.com/YOUR_GITHUB_USERNAME/hiero-sdk-python.git
cd hiero-sdk-python
# Add upstream for future syncing
git remote add upstream https://github.com/hiero-ledger/hiero-sdk-python.gitThis installs the package manager uv:
curl -LsSf https://astral.sh/uv/install.sh | sh
exec $SHELLNow install dependencies as per pyproject.toml:
uv syncThe SDK uses protobuf definitions to generate gRPC and model classes.
Run:
uv run python generate_proto.py