Python package
Install the latest released version of the CLI
The easiest way to install Garaga is via pip
, which will fetch and install the pre-built binary wheels for your platform.
Open your terminal or command prompt.
(Optional) If you're using a virtual environment (venv), simply activate your venv.
Run the following command to install latest release version:
pip install garaga
Once the package is successfully installed, the CLI will be accessible via the command line:
garaga
Install a specific version or from a specific commit / from source
To install a specific version, use :
pip install --force-reinstall garaga==0.15.5
To install a version at specific commit, pick a commit hash from the github history and use :
pip install git+https://github.com/keep-starknet-strange/garaga.git@COMMIT_HASH
Installation troubleshooting
You might have some dependencies issues on Linux or MacOs related to some packages that uses C code.
Refer to the installations notes of Starknet.py https://starknetpy.readthedocs.io/en/latest/installation.html to fix those issues.
Last updated
Was this helpful?