# Install Python via Homebrew
brew install python
# Install ThothCTL
pip3 install thothctl
# Install using system Python
python3 -m pip install --user thothctl
# Add to PATH
echo 'export PATH=$PATH:~/Library/Python/3.x/bin' >> ~/.zshrc
source ~/.zshrc
# Check installation location
pip3 show -f thothctl
# Add to PATH
export PATH=$PATH:$(python3 -m site --user-base)/bin
# Use user installation
pip3 install --user thothctl
# Or use virtual environment
python3 -m venv thothctl-env
source thothctl-env/bin/activate
pip install thothctl
# Using Homebrew
brew install graphviz
# Using MacPorts
sudo port install graphviz
# Install if needed
xcode-select --install
# Add to ~/.zshrc or ~/.bash_profile
export THOTHCTL_DEBUG=true
export THOTH_CONFIG_DIR=~/.thothcf
export PATH=$PATH:$(python3 -m site --user-base)/bin