In case anyone runs into the following error when installing from source:
xcrun: error: unable to find utility "metal", not a developer tool or in PATH
It's solvable with instructions from here: gfx-rs/gfx#2309
I had previously only installed Xcode command-line tools (xcode-select --install), but was running into the above error. Installing full Xcode and running:
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
Allowed me to install from source (env CMAKE_BUILD_PARALLEL_LEVEL="" pip install -e .)
In case anyone runs into the following error when installing from source:
It's solvable with instructions from here: gfx-rs/gfx#2309
I had previously only installed Xcode command-line tools (
xcode-select --install), but was running into the above error. Installing full Xcode and running:Allowed me to install from source (
env CMAKE_BUILD_PARALLEL_LEVEL="" pip install -e .)