Homebrew formulae for IQToolkit Analyzer - an AI-powered multi-database performance analyzer for PostgreSQL and MongoDB.
IQToolkit Analyzer supports Python 3.11, 3.12, 3.13, and 3.14. The default formula uses Python 3.13, but versioned formulas are available for other Python versions if you have specific compatibility requirements.
brew tap iqtoolkit/iqtoolkit
brew install iqtoolkit-analyzerVersion-specific formulas include both the package version and Python version:
| Formula | Package Version | Python Version |
|---|---|---|
iqtoolkit-analyzer@0_3_0rc3_py311 |
v0.3.0rc3 | 3.11 |
iqtoolkit-analyzer@0_3_0rc3_py312 |
v0.3.0rc3 | 3.12 |
iqtoolkit-analyzer@0_3_0rc3_py313 |
v0.3.0rc3 | 3.13 |
iqtoolkit-analyzer@0_3_0rc3_py314 |
v0.3.0rc3 | 3.14 |
brew install iqtoolkit-analyzer@0_3_0rc3_py313Note: Versioned formulas are keg-only. To use them, either:
- Use the full path:
/opt/homebrew/opt/iqtoolkit-analyzer@0_3_0rc3_py313/bin/iqtoolkit-analyzer - Or link it:
brew link --force iqtoolkit-analyzer@0_3_0rc3_py313
iqtoolkit-analyzer --help
iqtoolkit-analyzer --versionIf you prefer to use your own Python environment:
# Using pipx (recommended for CLI tools)
pipx install iqtoolkit-analyzer
# Using pip in a virtual environment
pip install iqtoolkit-analyzerFor versions not available as Homebrew formulas, use pipx or pip:
# Specific version with your default Python
pipx install iqtoolkit-analyzer==0.2.0
# Specific version with a specific Python version
pipx install iqtoolkit-analyzer==0.2.0 --python python3.11
# Or using pip in a virtual environment
python3.11 -m venv myenv
source myenv/bin/activate
pip install iqtoolkit-analyzer==0.2.0brew update
brew upgrade iqtoolkit-analyzerbrew uninstall iqtoolkit-analyzer
brew untap iqtoolkit/iqtoolkit # Optional: remove the tapMake sure Homebrew's bin directory is in your PATH:
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zshrc
source ~/.zshrcVersioned formulas are keg-only and not linked by default. To use them:
brew link --force iqtoolkit-analyzer@0_3_0rc3_py313Or add to your PATH:
export PATH="/opt/homebrew/opt/iqtoolkit-analyzer@0_3_0rc3_py313/bin:$PATH"MIT