๐Ÿ“ฅ Install the Giskard Python Library#

Giskard supports Python 3.9, 3.10 and 3.11.

Install#

pip install giskard[llm] -U
pip install giskard -U

Upgrade#

pip uninstall giskard
pip install giskard -U

Dependency issues#

If you run into conflicts with Giskard dependencies, please uninstall the conflicting libraries and re-install Giskard.

For instance, if you have dependency conflicts with pandas, you can run:

pip uninstall giskard
pip uninstall pandas
pip install giskard -U