-
Notifications
You must be signed in to change notification settings - Fork 1
Description
I'm trying to install INDIWebManagerApp on my M4 Mac Mini (MacOS Sequoia). It's saying that Homebrew (and maybe Python3) on my machine but both are. I don't want to reinstall and have my computer crufted up with multiple versions. Any why INDIWebManagerApp can't correctly determine the installation status of its dependencies?
Digging into the code a bit, it seems that INDIWebManagerApp is looking for /usr/local/bin/brew to determine whether or not a homebrew installation exists. I think it's actually installed at /opt/homebrew on Apple Silicon Macs (but maybe not if you migrated your installation from an Intel Mac). See here: docs.brew.sh/Installation
And it seems it's looking for python3 here: /usr/local/opt/python/libexec/bin as it's expecting python3 to be symlinked there by homebrew when installed via homebrew. My problem is that my python3 installation is managed via pyenv and there's no symlink to python3 at the path above.